constellation/terraform/infrastructure/iam/gcp/variables.tf
2025-04-22 09:54:23 +02:00

25 lines
760 B
HCL

variable "project_id" {
type = string
description = "ID of the GCP project the cluster should reside in."
}
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])$."
}
variable "name_prefix" {
type = string
description = "Prefix to be used for all resources created by this module."
}
variable "region" {
type = string
description = "GCP region the cluster should reside in. Needs to have the N2D machine type available."
}
variable "zone" {
type = string
description = "GCP zone the cluster should reside in. Needs to be within the specified region."
}