2024-12-04 16:19:45 +01:00
|
|
|
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
|
|
|
|
}
|