pb providers

This commit is contained in:
vaisse
2025-12-04 08:17:10 +00:00
parent e67b5bf03c
commit 33698ed400
15 changed files with 507 additions and 0 deletions

View File

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