Skip to content

Commit f302051

Browse files
authored
Fix GCP Cloud Run service account value (#71)
1 parent 088ef73 commit f302051

File tree

1 file changed

+1
-1
lines changed
  • deployment/modules/gcp/cloudrun

1 file changed

+1
-1
lines changed

deployment/modules/gcp/cloudrun/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ resource "google_cloud_run_v2_service" "default" {
2626
launch_stage = "GA"
2727

2828
template {
29-
service_account = "projects/${var.project_id}/serviceAccounts/${local.cloudrun_service_account_id}@${var.project_id}.iam.gserviceaccount.com"
29+
service_account = "${local.cloudrun_service_account_id}@${var.project_id}.iam.gserviceaccount.com"
3030
max_instance_request_concurrency = 700
3131
timeout = "5s"
3232

0 commit comments

Comments
 (0)