plan fonctionnel

This commit is contained in:
vaisse
2025-12-04 10:32:17 +00:00
parent b22f251702
commit 89d8a79231
5 changed files with 75 additions and 42 deletions

View File

@@ -1,13 +1,13 @@
output "vpc_id" {
description = "id du vpc"
value = google_compute_network.id
value = google_compute_network.vpc.id
}
output "subnets" {
description = "ids of subnets"
value = {
fr_id = frontend.id
ba_id = backend.id
dat_id = database.id
fr_id = google_compute_subnetwork.frontend.id
ba_id = google_compute_subnetwork.backend.id
dat_id = google_compute_subnetwork.database.id
}
}