test
Some checks failed
terraform validation / Terraform (push) Has been cancelled

This commit is contained in:
2025-01-23 21:07:46 +01:00
parent e6a1e16702
commit 7d1a34e24e
11 changed files with 196 additions and 158 deletions

View File

@@ -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
}