1
0
forked from pierront/but3-iac
Files
but3-iac-dick/terraform/modules/network/variables.tf

37 lines
629 B
Terraform
Raw Normal View History

2025-12-03 16:33:17 +01:00
variable "project_name" {
type = string
2025-12-03 16:43:11 +01:00
description = "but3-iac-dick"
2025-12-03 16:33:17 +01:00
}
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" {
type = string
description = "Plages dadresses autorisées à se connecter en SSH"
}