Files

24 lines
500 B
Terraform
Raw Permalink Normal View History

2025-12-03 16:54:57 +01:00
variable "instance_type" {
description = "Type d'instance"
type = string
}
variable "zone" {
description = "Zone GCP des instances"
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
}