This commit is contained in:
ducreux
2025-12-03 16:11:01 +00:00
parent e67b5bf03c
commit 531d8d21ef
31 changed files with 3452 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
output "vpc_id" {
description = "ID du VPC principal"
value = google_compute_network.vpc.id
}
output "subnet_ids" {
description = "IDs des sous-réseaux frontend, backend et database"
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
}