Files
but3-iac/tp-cloud/terraform/environments/dev/variables.tf

20 lines
299 B
Terraform
Raw Normal View History

2025-12-04 09:21:26 +01:00
variable "projet_name" {
2025-12-03 16:12:20 +00:00
type = string
default = "projet-hugo-478713"
}
variable "region" {
type = string
default = "europe-west9"
}
variable "zone" {
type = string
default = "europe-west9-b"
}
variable "ssh_source_ranges" {
type = list(string)
default = ["0.0.0.0/0"]
}