diff --git a/chat.tf b/chat.tf index 64bf00a..2890fc0 100644 --- a/chat.tf +++ b/chat.tf @@ -2,9 +2,10 @@ module "chat-integration" { source = "./modules/chat" configuration = { - environment = "integration" - git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA - probe = "/" + environment = "integration" + git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA + probe = "/" + disable_service = false } secrets = yamldecode(var.chat_integration) @@ -16,9 +17,10 @@ module "chat-staging" { source = "./modules/chat" configuration = { - environment = "staging" - git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA - probe = "/" + environment = "staging" + git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA + probe = "/" + disable_service = false } secrets = yamldecode(var.chat_staging) @@ -30,9 +32,10 @@ module "chat-production" { source = "./modules/chat" configuration = { - environment = "production" - git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA - probe = "/" + environment = "production" + git_hash = var.TFC_CONFIGURATION_VERSION_GIT_COMMIT_SHA + probe = "/" + disable_service = false } secrets = yamldecode(var.chat_production)