This commit is contained in:
Jean-Luc NELET 2024-12-04 16:19:45 +01:00
parent 38c6145ff5
commit 733f57e5b7

View File

@ -0,0 +1,34 @@
variable "project_name" {
description = "ID du projet"
type = string
}
variable "region" {
description = "region du projet"
type = string
}
variable "frontend_cidr" {
description = "frontend"
type = string
}
variable "backend_cidr" {
description = "backend"
type = string
}
variable "database_cidr" {
description = "database"
type = string
}
variable "ssh_source_ranges" {
description = "acces internet"
type = string
}
variable "cidr_range" {
description = "cidr de network"
type = string
}