Correction variables

This commit is contained in:
2024-12-04 17:21:42 +01:00
parent a66efccb6b
commit 11d0794b73
4 changed files with 137 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
variable "instance_type" {
description = "Type de machine"
type = string
}
variable "zone" {
description = "zone"
type = string
}
variable "frontend_subnet" {
description = "sous réseau frontend"
type = string
}
variable "backend_subnet" {
description = "sous réseau backend"
type = string
}
variable "database_subnet" {
description = "sous réseau database"
type = string
}