Files
but3-iac/terraform/modules/network/variables.tf

35 lines
661 B
Terraform
Raw Normal View History

2025-12-03 16:18:06 +00:00
variable "project_name" {
description = "Nom du projet"
type = string
2025-12-04 08:56:03 +00:00
}
variable "project_id" {
description = "Id du projet"
type = string
2025-12-03 16:18:06 +00:00
}
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)
}