Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
roch committed Aug 14, 2024
1 parent 5845f2f commit c90290f
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions chat.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit c90290f

Please sign in to comment.