This commit is contained in:
2024-12-06 02:43:07 +01:00
parent 770fb2bb35
commit ebd9b043a5
3 changed files with 63 additions and 44 deletions

View File

@@ -1,30 +1,31 @@
#- project_name (string)
variable "project_name" {
description = "ID du projet"
description = "Nom du projet"
type = string
}
# - region (string)
variable "region" {
description = "region du projet"
description = "gion du projet"
type = string
}
# - frontend_cidr (string)
variable "frontend_cidr" {
description = "frontend"
description = "cidr du frontend"
type = string
}
# - backend_cidr (string)
variable "backend_cidr" {
description = "backend"
description = "cidr du backend"
type = string
}
# - database_cidr (string)
variable "database_cidr" {
description = "database"
description = "cidr du database"
type = string
}
# - ssh_source_ranges (string)
variable "ssh_source_ranges" {
description = "acces internet"
description = "Accès à internet"
type = string
}