Files
but3-iac/tp-cloud/terraform/modules/compute/variables.tf
2025-12-04 09:24:00 +01:00

25 lines
519 B
HCL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
variable "instance_type" {
description = "Type de machine GCP"
type = string
}
variable "zone" {
description = "Zone de déploiement"
type = string
}
variable "frontend_subnet_id" {
description = "ID du subnet pour linstance frontend"
type = string
}
variable "backend_subnet_id" {
description = "ID du subnet pour linstance backend"
type = string
}
variable "database_subnet_id" {
description = "ID du subnet pour linstance database"
type = string
}