This commit is contained in:
2025-12-04 08:56:10 +01:00
parent c66e64ffa0
commit f6896f0858
5 changed files with 193 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
# À vous de définir les variables pour :
# - instance_type
# - zone
# - frontend_subnet_id
# - backend_subnet_id
# - database_subnet_id
variable "instance_type" {
description = "Nom du projet cidr"
type = string
}
variable "zone" {
description = "Nom du projet cidr"
type = string
}
variable "frontend_subnet_id" {
description = "Nom du projet cidr"
type = string
}
variable "backend_subnet_id" {
description = "Nom du projet cidr"
type = string
}
variable "database_subnet_id" {
description = "Nom du projet cidr"
type = string
}