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

26 lines
481 B
Terraform
Raw Normal View History

2025-12-03 15:35:12 +00:00
variable "instance_type" {
description = "Type de machine)"
type = string
}
variable "zone" {
description = "Zone de déploiement"
type = string
}
variable "frontend_subnet_id" {
description = "ID du sous-réseau frontend"
type = string
}
variable "backend_subnet_id" {
description = "ID du sous-réseau backend"
type = string
}
variable "database_subnet_id" {
description = "ID du sous-réseau database"
type = string
}