1
0
forked from pierront/but3-iac

arborenscence + fichier modifier

This commit is contained in:
2025-12-03 16:33:17 +01:00
parent e67b5bf03c
commit d82eced501
12 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
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" {
type = string
description = "Plages dadresses autorisées à se connecter en SSH"
}