This commit is contained in:
33
variables.tf
33
variables.tf
@@ -1,17 +1,22 @@
|
||||
# Ne doit pas être ici, on va fonctionner en mode liste qui se trouvera dans le fichier project.tf
|
||||
#variable "project" {
|
||||
# description = "GCP project ID"
|
||||
# type = string
|
||||
#}
|
||||
|
||||
variable "region" {
|
||||
description = "GCP region"
|
||||
variable "billing_account" {
|
||||
description = "The ID of the billing account to associate projects with"
|
||||
type = string
|
||||
default = "europe-west1"
|
||||
default = "<please enter your billing account number here>"
|
||||
}
|
||||
|
||||
#variable "file" {
|
||||
# description = "GCP credential"
|
||||
# type = string
|
||||
# default = "creds/service-account-key.json"
|
||||
#}
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user