This commit is contained in:
2025-12-04 09:24:00 +01:00
parent d367c92d14
commit 30e5a9d122
4 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
variable "instance_type" {
description = "Type de machine GCP"
type = string
}
variable "zone" {
description = "Zone de déploiement"
type = string
}
variable "frontend_subnet_id" {
description = "ID du subnet pour linstance frontend"
type = string
}
variable "backend_subnet_id" {
description = "ID du subnet pour linstance backend"
type = string
}
variable "database_subnet_id" {
description = "ID du subnet pour linstance database"
type = string
}