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

33 lines
529 B
HCL

# À vous de définir les variables pour :
# - instance_type
# - zone
# - frontend_subnet_id
# - backend_subnet_id
# - database_subnet_id
variable "instance_type" {
description = "type de l'instance"
type = string
}
variable "zone" {
description = "région"
type = string
}
variable "frontend_subnet_id" {
description = "front-end id"
type = string
}
variable "backend_subnet_id" {
description = "back-end id"
type = string
}
variable "database_subnet_id" {
description = "database id"
type = string
}