Skip to content

Commit 53c5e5a

Browse files
fix: Add sa for event-queue
1 parent dc2bc04 commit 53c5e5a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

modules/helm_release/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ locals {
3535
webservice = { image = { tag = "8264bfc" } },
3636
migrations = { image = { tag = "c19dd39" } },
3737
event-worker = { image = { tag = "8264bfc" } },
38+
event-queue = { image = { tag = "03f370a" } },
3839
jobs = { image = { tag = "8264bfc" } },
3940

4041
pty-proxy = {
@@ -81,6 +82,8 @@ locals {
8182
"migrations.serviceAccount.annotations.iam\\.gke\\.io/gcp-service-account" = var.service_account_email,
8283
"event-worker.serviceAccount.create" = true,
8384
"event-worker.serviceAccount.annotations.iam\\.gke\\.io/gcp-service-account" = var.service_account_email,
85+
"event-queue.serviceAccount.create" = true,
86+
"event-queue.serviceAccount.annotations.iam\\.gke\\.io/gcp-service-account" = var.service_account_email,
8487
}
8588
}
8689

modules/service_accounts/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ locals {
1818
"serviceAccount:${local.project_id}.svc.id.goog[${local.gke_namespace}/ctrlplane-jobs]",
1919
"serviceAccount:${local.project_id}.svc.id.goog[${local.gke_namespace}/ctrlplane-migrations]",
2020
"serviceAccount:${local.project_id}.svc.id.goog[${local.gke_namespace}/ctrlplane-event-worker]",
21+
"serviceAccount:${local.project_id}.svc.id.goog[${local.gke_namespace}/ctrlplane-event-queue]",
2122
]
2223
}
2324

0 commit comments

Comments
 (0)