modif de DEV

This commit is contained in:
2025-12-04 09:44:34 +01:00
parent d1c013fa5e
commit 0cb2915625
3 changed files with 24 additions and 22 deletions

View File

@@ -1,11 +1,15 @@
output "vpc_id" {
value = google_compute_network.vpc.id
output "frontend_subnet_id" {
value = google_compute_subnetwork.frontend.id
}
output "subnet_ids" {
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
output "backend_subnet_id" {
value = google_compute_subnetwork.backend.id
}
output "database_subnet_id" {
value = google_compute_subnetwork.database.id
}
output "vpc_id" {
value = google_compute_network.vpc.id
}