Partie 1 + moitié partie 2

This commit is contained in:
gentil
2025-12-04 07:54:45 +00:00
parent e67b5bf03c
commit e7e0840e6a
20 changed files with 1064 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
output "vpc_id" {
description = "ID du réseau VPC"
value = google_compute_network.vpc.id
}
output "subnet_ids" {
description = "IDs des sous-réseaux frontend, backend et database"
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
}