terraform: make GCP SA id optional (#3777)

This commit is contained in:
Moritz Sanft 2025-04-22 09:54:23 +02:00 committed by GitHub
parent 61e61b0b6e
commit 81952fa67d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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])$."
}