From 1b9ac0473cb1e63229840b31f4c690a92d47b100 Mon Sep 17 00:00:00 2001 From: vipin-dfe Date: Fri, 8 Nov 2024 15:00:30 +0000 Subject: [PATCH] Update service account name Avoid clash with the existing service accounts in gcloud. --- aks/dfe_analytics/resources.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aks/dfe_analytics/resources.tf b/aks/dfe_analytics/resources.tf index cf5dfa4..1f690bc 100644 --- a/aks/dfe_analytics/resources.tf +++ b/aks/dfe_analytics/resources.tf @@ -1,5 +1,5 @@ resource "google_service_account" "appender" { - account_id = "appender-${var.service_short}-${var.environment}" + account_id = "appender-wif-${var.service_short}-${var.environment}" display_name = "Service Account appender to ${var.service_short} in ${var.environment} environment" description = "Configured with workflow identity federation from Azure" }