Files
but3-iac/tp-cloud/terraform/modules/compute/variables.tf

36 lines
544 B
Terraform
Raw Normal View History

2025-12-03 16:12:20 +00:00
variable "projet_name" {
description = "Projet GCP"
type = string
2025-12-04 09:26:02 +01:00
default = "projet-hugo-478713"
2025-12-03 16:12:20 +00:00
}
variable "zone" {
description = "Zone GCP"
type = string
default = "europe-west9"
}
variable "instance_type" {
description = "Type de machine"
type = string
default = "e2-small"
}
variable "frontend_subnet_id" {
type = string
}
variable "backend_subnet_id" {
type = string
}
variable "database_subnet_id" {
type = string
}
variable "os_login" {
type = bool
default = true
}