inshBouddah

This commit is contained in:
Jean-Luc NELET 2024-12-06 14:51:07 +01:00
parent 84710d08f7
commit 4ec3638b1e

View File

@ -4,8 +4,8 @@ output "id_vpc" {
output "id_subnetwork" { output "id_subnetwork" {
value = { value = {
frontend=google_compute_subnetwork.frontend.id, frontend = google_compute_subnetwork.frontend_subnet.id,
backend=google_compute_subnetwork.backend.id, backend = google_compute_subnetwork.backend_subnet.id,
database=google_compute_subnetwork.database.id database = google_compute_subnetwork.database_subnet.id
} }
} }