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

@@ -6,8 +6,8 @@ output "vpc_id" {
output "subnet_ids" {
description = "IDs des sous-réseaux frontend, backend, database"
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
"frontend" = google_compute_subnetwork.frontend.id
"backend" = google_compute_subnetwork.backend.id
"database" = google_compute_subnetwork.database.id
}
}