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

36 lines
546 B
Terraform
Raw Normal View History

2025-12-04 11:47:32 +01:00
variable "projet_name" {
description = "Projet GCP"
type = string
default = "projet-hugo-478713"
}
variable "zone" {
description = "Zone GCP"
type = string
default = "europe-west9-b"
}
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
}