terraform-gcp-projet/variables.tf
hcornet 73841a46a2
Some checks failed
terraform validation / Terraform (push) Failing after 12s
check var.folders empty
2025-01-23 21:13:17 +01:00

24 lines
599 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
default = ""
}