This commit is contained in:
2025-12-04 09:40:53 +01:00
parent 3227265c7a
commit be4001f6c0
9 changed files with 155 additions and 109 deletions

View File

@@ -6,25 +6,26 @@
# - database_subnet_id
variable "instance_type" {
type = string
description = "type de l'instance"
type = string
}
variable "zone" {
type = string
description = "Nom de la zone"
type = string
}
variable "frontend_subnet_id" {
type = string
description = "id du frontend"
type = string
}
variable "backend_subnet_id" {
type = string
description = "id du backend"
type = string
}
variable "database_subnet_id" {
type = string
}
description = "id du database"
type = string
}