2024-12-06 15:00:16 +01:00
|
|
|
|
2024-12-04 16:20:32 +01:00
|
|
|
variable "project_name" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "Nom du projet"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "region" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "Région du projet"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "frontend_cidr" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "cidr du frontend"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "backend_cidr" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "cidr du backend"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "database_cidr" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "cidr du database"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "ssh_source_ranges" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "Accès à internet"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "cidr_range" {
|
2024-12-06 15:00:16 +01:00
|
|
|
description = "cidr de network"
|
2024-12-04 16:20:32 +01:00
|
|
|
type = string
|
2024-12-06 15:00:16 +01:00
|
|
|
}
|