terraform-gcp-projet/variables.tf
hcornet 7eb7e9f651
Some checks failed
terraform validation / Terraform (push) Failing after 28s
dsqd
2025-01-23 21:25:54 +01:00

23 lines
580 B
HCL

variable "billing_account" {
description = "The ID of the billing account to associate projects with"
type = string
default = "<please enter your billing account number here>"
}
variable "org_id" {
description = "The organization id for the associated resources"
type = string
default = "141601796700"
}
variable "billing_project" {
description = "The project id to use for billing"
type = string
default = "CLOUD_SETUP_HOST_PROJECT_ID"
}
variable "folders" {
description = "Folder structure as a map"
type = map
}