Files

37 lines
624 B
Terraform
Raw Permalink Normal View History

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 dadresses autorisées à se connecter en SSH"
2025-12-03 16:44:13 +01:00
type = string
2025-12-03 16:11:42 +01:00
}