correction

This commit is contained in:
2025-12-04 11:17:38 +01:00
parent 4ec43f3a89
commit 02a92498d8
2 changed files with 12 additions and 12 deletions

View File

@@ -13,3 +13,7 @@ output "vpc_id" {
output "service_account_email" { output "service_account_email" {
value = module.iam.service_account_email value = module.iam.service_account_email
} }
output "subnets_ids" {
value = module.network.subnets_ids
}

View File

@@ -1,15 +1,11 @@
output "frontend_subnet_id" {
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
}
output "vpc_id" { output "vpc_id" {
value = google_compute_network.vpc.id value = google_compute_network.vpc.id
} }
output "subnets_ids" {
value = [
google_compute_subnetwork.frontend.id,
google_compute_subnetwork.backend.id,
google_compute_subnetwork.database.id
]
}