terraform/environments/dev/variables.tf

13 lines
233 B
Terraform
Raw Normal View History

2024-12-04 17:23:22 +01:00
variable "projet_id" {
description = "ID du projet GCP"
type = string
default = "automatisation-tp1"
}
variable "region" {
description = "region des vms"
type = string
default = "europe-west1-b"
}