correction

This commit is contained in:
2025-12-04 11:11:02 +01:00
parent 70f134a13a
commit e423f36d1f

View File

@@ -23,7 +23,15 @@ output "vpc_id" {
value = module.network.vpc_id value = module.network.vpc_id
} }
output "subnets_ids" { output "frontend_subnet_id" {
value = module.network.subnets_ids value = google_compute_subnetwork.frontend.id
}
output "backend_subnet_id" {
value = google_compute_subnetwork.backend.id
}
output "database_subnet_id" {
value = google_compute_subnetwork.database.id
} }