Correctif Network + Compute qui nage

This commit is contained in:
2025-12-04 09:54:18 +00:00
parent 58d1ea2089
commit 1747539bf6
14 changed files with 1123 additions and 23 deletions

View File

@@ -0,0 +1,11 @@
output "vpc-id" {
value = google_compute_network.vpc.id
}
output "subnets-ids" {
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
}