Skip to content

Commit

Permalink
fix: Correct bufstream values structure
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpanzella committed Dec 9, 2024
1 parent 931b1e7 commit c6caed0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -328,12 +328,14 @@ module "wandb" {
}

bufstream = {
serviceAccount = var.create_workload_identity ? {
name = local.k8s_sa_map.bufstream
annotations = { "iam.gke.io/gcp-service-account" = module.service_accounts.sa_account_role }
bufstream = {
serviceAccount = var.create_workload_identity ? {
name = local.k8s_sa_map.bufstream
annotations = { "iam.gke.io/gcp-service-account" = module.service_accounts.sa_account_role }
} : {
name = ""
annotations = {}
name = ""
annotations = {}
}
}
}
ingress = {
Expand Down

0 comments on commit c6caed0

Please sign in to comment.