From 81952fa67d968f8e95cfe726dec6f5e54f1ce8c0 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Tue, 22 Apr 2025 09:54:23 +0200 Subject: [PATCH] terraform: make GCP SA id optional (#3777) --- terraform/infrastructure/iam/gcp/variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/infrastructure/iam/gcp/variables.tf b/terraform/infrastructure/iam/gcp/variables.tf index b1895f0fc..37dc35144 100644 --- a/terraform/infrastructure/iam/gcp/variables.tf +++ b/terraform/infrastructure/iam/gcp/variables.tf @@ -5,6 +5,7 @@ variable "project_id" { variable "service_account_id" { type = string + default = null description = "[DEPRECATED use var.name_prefix] ID for the service account being created. Must match ^[a-z](?:[-a-z0-9]{4,28}[a-z0-9])$." }