mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
b8d991f84c
* AB#2577 Add GCP TF Config & Documentation [no ci] wip AB#2577 Add GCP TF config & Docs * Download lockfile * Remove IAM input variables from output
20 lines
537 B
HCL
20 lines
537 B
HCL
variable "project_id" {
|
|
type = string
|
|
description = "GCP Project ID"
|
|
}
|
|
|
|
variable "service_account_id" {
|
|
type = string
|
|
description = "ID for the service account being created. Must match ^[a-z](?:[-a-z0-9]{4,28}[a-z0-9])$"
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
description = "Region used for constellation clusters. Needs to have the N2D machine type available."
|
|
}
|
|
|
|
variable "zone" {
|
|
type = string
|
|
description = "Zone used for constellation clusters. Needs to be within the specified region."
|
|
}
|