Skip to content

Commit

Permalink
Merge pull request #1423 from alphagov/brake_var_rev
Browse files Browse the repository at this point in the history
Fix variables type
  • Loading branch information
rtrinque authored Aug 8, 2024
2 parents fa7a710 + 02574e3 commit 1b07f9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module "variable-set-chat-integration" {
chat_redis_cluster_node_type = "cache.r6g.xlarge"
chat_redis_cluster_num_cache_clusters = "1"
chat_redis_cluster_parameter_group_name = "default.redis7"
cloudfront_create = "1"
cloudfront_create = 1
cloudfront_enable = true
service_disabled = false
origin_chat_domain = "chat.eks.integration.govuk.digital"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module "variable-set-chat-production" {
chat_redis_cluster_node_type = "cache.r6g.xlarge"
chat_redis_cluster_num_cache_clusters = "2"
chat_redis_cluster_parameter_group_name = "default.redis7"
cloudfront_create = "1"
cloudfront_create = 1
cloudfront_enable = true
service_disabled = false
origin_chat_domain = "chat.eks.production.govuk.digital"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ module "variable-set-chat-staging" {
chat_redis_cluster_node_type = "cache.r6g.xlarge"
chat_redis_cluster_num_cache_clusters = "1"
chat_redis_cluster_parameter_group_name = "default.redis7"
cloudfront_create = "1"
cloudfront_create = 1
cloudfront_enable = true
service_disabled = false
origin_chat_domain = "chat.eks.staging.govuk.digital"
Expand Down

0 comments on commit 1b07f9f

Please sign in to comment.