2025-12-03 16:11:42 +01:00
|
|
|
|
variable "project_name" {
|
|
|
|
|
|
type = string
|
|
|
|
|
|
description = "but3-iac"
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
variable "region" {
|
|
|
|
|
|
type = string
|
|
|
|
|
|
description = "Région dans laquelle déployer les ressources"
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
variable "frontend_cidr" {
|
|
|
|
|
|
description = "CIDR for frontend subnet"
|
|
|
|
|
|
type = string
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
variable "backend_cidr" {
|
|
|
|
|
|
description = "CIDR for backend subnet"
|
|
|
|
|
|
type = string
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
variable "database_cidr" {
|
|
|
|
|
|
description = "CIDR for database subnet"
|
|
|
|
|
|
type = string
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
variable "ssh_source_ranges" {
|
|
|
|
|
|
description = "Plages d’adresses autorisées à se connecter en SSH"
|
2025-12-03 16:44:13 +01:00
|
|
|
|
type = string
|
2025-12-03 16:11:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|