From 02574e33804e3b815bbe86a23ede11b9884c8336 Mon Sep 17 00:00:00 2001 From: roch Date: Thu, 8 Aug 2024 11:29:06 +0100 Subject: [PATCH] Fix variables type --- .../deployments/tfc-configuration/variables-integration.tf | 2 +- terraform/deployments/tfc-configuration/variables-production.tf | 2 +- terraform/deployments/tfc-configuration/variables-staging.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/deployments/tfc-configuration/variables-integration.tf b/terraform/deployments/tfc-configuration/variables-integration.tf index f21903555..76f4c4965 100644 --- a/terraform/deployments/tfc-configuration/variables-integration.tf +++ b/terraform/deployments/tfc-configuration/variables-integration.tf @@ -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" diff --git a/terraform/deployments/tfc-configuration/variables-production.tf b/terraform/deployments/tfc-configuration/variables-production.tf index 0a674740a..8021b5a2f 100644 --- a/terraform/deployments/tfc-configuration/variables-production.tf +++ b/terraform/deployments/tfc-configuration/variables-production.tf @@ -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" diff --git a/terraform/deployments/tfc-configuration/variables-staging.tf b/terraform/deployments/tfc-configuration/variables-staging.tf index 83d3e65af..a91fae2f9 100644 --- a/terraform/deployments/tfc-configuration/variables-staging.tf +++ b/terraform/deployments/tfc-configuration/variables-staging.tf @@ -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"