This commit is contained in:
2024-12-06 15:51:04 +01:00
parent a19d6855b2
commit d376bf9e98
4 changed files with 33 additions and 7 deletions

View File

@@ -1 +1,11 @@
# Output d'un module
output "vpc"{
value = google_compute_network.vpc.id
}
output "subnet" {
value = {
frontend = google_compute_subnetwork.subnet_front.id,
backend = google_compute_subnetwork.subnet_back.id,
database = google_compute_subnetwork.subnet_db.id
}
}