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

24 lines
354 B
Terraform
Raw Normal View History

2025-12-04 11:47:32 +01:00
variable "projet_name" {
type = string
default = "projet-hugo-478713"
}
variable "region" {
type = string
default = "europe-west9"
}
variable "ssh_source_ranges" {
type = list(string)
default = ["0.0.0.0/0"]
}
variable "instance_type" {
type = string
default = "e2-small"
}
variable "os_login" {
type = bool
default = true
}