feat: compute module

This commit is contained in:
2025-12-03 16:54:57 +01:00
parent e23e646c48
commit 1e8a026e41
7 changed files with 134 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
variable "instance_type" {
description = "Type d'instance"
type = string
}
variable "zone" {
description = "Zone GCP des instances"
type = string
}
variable "frontend_subnet_id" {
description = "ID du sous-réseau frontend"
type = string
}
variable "backend_subnet_id" {
description = "ID du sous-réseau backend"
type = string
}
variable "database_subnet_id" {
description = "ID du sous-réseau database"
type = string
}