This commit is contained in:
2024-12-06 14:28:48 +01:00
parent eb60239277
commit 8c61edd97a
2 changed files with 11 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
output "vpc"{
value = google_compute_network.id
}
output "subnet" {
value = {
frontend = google_compute_subnetwork.subnet1.id,
backend = google_compute_subnetwork.subnet2.id,
database = google_compute_subnetwork.subnet3.id
}
}