Skip to content

Commit 8ee9e8a

Browse files
fix: Include azure settings in helm release
1 parent 0a5fc91 commit 8ee9e8a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

modules/helm_release/main.tf

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ locals {
4747
},
4848
}
4949

50-
integrations_settings = var.github_bot != null ? {
50+
github_settings = var.github_bot != null ? {
5151
"global.integrations.github.bot.name" = var.github_bot.name
5252
"global.integrations.github.bot.appId" = var.github_bot.app_id
5353
"global.integrations.github.bot.clientId" = var.github_bot.client_id
@@ -95,7 +95,8 @@ resource "helm_release" "this" {
9595
local.auth_providers_settings,
9696
local.ingress_annotations,
9797
local.service_account_annotations,
98-
local.integrations_settings,
98+
local.github_settings,
99+
local.azure_app_settings,
99100
)
100101

101102
content {

0 commit comments

Comments
 (0)