This commit is contained in:
2025-12-04 09:34:25 +01:00
parent 61860ed31b
commit 265525a4c5
6 changed files with 159 additions and 1 deletions

View File

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