Skip to content

Commit

Permalink
remove global for not global things
Browse files Browse the repository at this point in the history
  • Loading branch information
adityachoudhari26 committed Aug 29, 2024
1 parent debf136 commit 65a6e10
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/helm_release/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,36 +44,36 @@ resource "helm_release" "this" {
}

set {
name = "global.webservice.serviceAccount.create"
name = "webservice.serviceAccount.create"
value = true
}

set {
name = "global.webservice.serviceAccount.annotations"
name = "webservice.serviceAccount.annotations"
value = yamlencode({
"iam.gke.io/gcp-service-account" = var.service_account_email
})
}

set {
name = "global.job-policy-checker.serviceAccount.create"
name = "job-policy-checker.serviceAccount.create"
value = true
}

set {
name = "global.job-policy-checker.serviceAccount.annotations"
name = "job-policy-checker.serviceAccount.annotations"
value = yamlencode({
"iam.gke.io/gcp-service-account" = var.service_account_email
})
}

set {
name = "global.migrations.serviceAccount.create"
name = "migrations.serviceAccount.create"
value = true
}

set {
name = "global.migrations.serviceAccount.annotations"
name = "migrations.serviceAccount.annotations"
value = yamlencode({
"iam.gke.io/gcp-service-account" = var.service_account_email
})
Expand Down

0 comments on commit 65a6e10

Please sign in to comment.