From d72e59510f9be06a7e183449b253af04a7ca2c98 Mon Sep 17 00:00:00 2001 From: Morgante Pell Date: Fri, 17 Sep 2021 13:42:00 -0400 Subject: [PATCH] fix: Use provided gcp_given_name for workload identity (#1003) Fixes #1002 --- modules/workload-identity/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/workload-identity/main.tf b/modules/workload-identity/main.tf index f267e4a27..ebcb5da01 100644 --- a/modules/workload-identity/main.tf +++ b/modules/workload-identity/main.tf @@ -32,7 +32,7 @@ locals { data "google_service_account" "cluster_service_account" { count = var.use_existing_gcp_sa ? 1 : 0 - account_id = var.name + account_id = local.gcp_given_name project = var.project_id }