2024-12-04 16:30:49 +01:00
|
|
|
variable "project_name" {
|
|
|
|
description = "nom du projet"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "region" {
|
|
|
|
description = "region"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "frontend_cidr" {
|
|
|
|
description = "sous réseau frontend"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "backend_cidr" {
|
|
|
|
description = "sous réseau backend"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "database_cidr" {
|
|
|
|
description = "sous réseau database"
|
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_source_ranges" {
|
|
|
|
description = "ssh"
|
|
|
|
type = string
|
|
|
|
}
|