diff --git a/modules/helm_release/main.tf b/modules/helm_release/main.tf index 21d0daa..c867087 100644 --- a/modules/helm_release/main.tf +++ b/modules/helm_release/main.tf @@ -4,10 +4,10 @@ locals { } image_tags = { - "webservice.image.tag" = "9fce138", - "migrations.image.tag" = "57101f8", - "event-worker.image.tag" = "57101f8", - "job-policy-checker.image.tag" = "57101f8", + "webservice.image.tag" = "55631d3", + "migrations.image.tag" = "e2b19bd", + "event-worker.image.tag" = "78ed086", + "job-policy-checker.image.tag" = "78ed086", } postgres_settings = { @@ -19,11 +19,12 @@ locals { } integrations_settings = var.github_bot != null ? { - "global.integrations.github.bot.name" = var.github_bot.name - "global.integrations.github.bot.appId" = var.github_bot.app_id - "global.integrations.github.bot.clientId" = var.github_bot.client_id - "global.integrations.github.bot.clientSecret" = var.github_bot.client_secret - "global.integrations.github.bot.privateKey" = var.github_bot.client_private_key + "global.integrations.github.bot.name" = var.github_bot.name + "global.integrations.github.bot.appId" = var.github_bot.app_id + "global.integrations.github.bot.clientId" = var.github_bot.client_id + "global.integrations.github.bot.clientSecret" = var.github_bot.client_secret + "global.integrations.github.bot.privateKey" = var.github_bot.client_private_key + "global.integrations.github.bot.webhookSecret" = var.github_bot.webhook_secret } : {} auth_providers_settings = { diff --git a/modules/helm_release/variables.tf b/modules/helm_release/variables.tf index bc2c74e..7f38614 100644 --- a/modules/helm_release/variables.tf +++ b/modules/helm_release/variables.tf @@ -75,6 +75,7 @@ variable "github_bot" { client_id = string client_secret = string client_private_key = string + webhook_secret = string }) description = "The GitHub bot user and token." default = null @@ -82,4 +83,4 @@ variable "github_bot" { variable "values" { type = map(any) -} \ No newline at end of file +} diff --git a/variables.tf b/variables.tf index 836325f..2ce673f 100644 --- a/variables.tf +++ b/variables.tf @@ -69,6 +69,7 @@ variable "github_bot" { client_id = string client_secret = string client_private_key = string + webhook_secret = string }) description = "The GitHub bot user and token." default = null