Files
but3-iac/tp-cloud/terraform/modules/network/variables.tf
2025-12-03 16:46:11 +01:00

31 lines
528 B
HCL

variable "project_name" {
description = "Nom du projet"
type = string
}
variable "region" {
description = "Région"
type = string
}
variable "frontend_cidr" {
description = "CIDR du frontend"
type = string
}
variable "backend_cidr" {
description = "CIDR du backend"
type = string
}
variable "database_cidr" {
description = "CIDR de la database"
type = string
}
variable "ssh_source_ranges" {
description = "Plages IP autorisées pour SSH"
type = string
}