constellation/terraform/infrastructure/iam/gcp/variables.tf
Leonard Cohnen 66815a4a47
gcp: support projects with no default permissions (#3656)
* helm/gcp: use service account in operator and joinservice

* helm: format operator testdata

* terraform/iam: create additional service account for VMs

This service account is used in the following commits and is attached to the VMs

* config: pass VM service account from iam create to cluster create via config

* cli/iamcreate: limit name prefix length

* docs: add minimal gcp IAM permissions
2025-03-25 14:13:38 +01:00

24 lines
739 B
HCL

variable "project_id" {
type = string
description = "ID of the GCP project the cluster should reside in."
}
variable "service_account_id" {
type = string
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."
}