commit de test

This commit is contained in:
aissi
2025-12-03 16:10:30 +01:00
parent e67b5bf03c
commit 68299b278a
13 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
variable "project_name" {
description = "Nom du projet"
type = string
}
variable "region" {
description = "Région"
type = string
}
variable "frontend_cidr" {
description = "CIDR du frontend"
type = string
}
variable "backend_cidr" {
description = "CIDR du backend"
type = string
}
variable "database_cidr" {
description = "CIDR de la database"
type = string
}
variable "ssh_source_ranges" {
description = "Plages IP autorisées pour SSH"
type = string
}