Files
but3-iac/terraform/modules/network/variables.tf
2025-12-04 08:56:03 +00:00

35 lines
661 B
HCL

variable "project_name" {
description = "Nom du projet"
type = string
}
variable "project_id" {
description = "Id du projet"
type = string
}
variable "region" {
description = "Région cloud"
type = string
}
variable "frontend_cidr" {
description = "CIDR du sous-réseau frontend"
type = string
}
variable "backend_cidr" {
description = "CIDR du sous-réseau backend"
type = string
}
variable "database_cidr" {
description = "CIDR du sous-réseau base de données"
type = string
}
variable "ssh_source_ranges" {
description = "Plages IP autorisées à SSH"
type = list(string)
}