This commit is contained in:
aissi
2025-12-04 11:59:30 +01:00
parent e292f49d99
commit 20d1893b1f
3 changed files with 6 additions and 6 deletions

View File

@@ -4,8 +4,8 @@ output "vpc_terraform_output" {
output "subnets" {
value = {
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
}