Problème avec Compute : subnet

This commit is contained in:
2025-12-03 16:12:20 +00:00
parent e67b5bf03c
commit e3270341e5
20 changed files with 1609 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
variable "projet_name" {
description = "Projet GCP"
type = string
}
variable "zone" {
description = "Zone GCP"
type = string
default = "europe-west9"
}
variable "instance_type" {
description = "Type de machine"
type = string
default = "e2-small"
}
variable "frontend_subnet_id" {
type = string
}
variable "backend_subnet_id" {
type = string
}
variable "database_subnet_id" {
type = string
}
variable "os_login" {
type = bool
default = true
}