Files
but3-iac/tp-cloud/terraform/modules/network/outputs.tf
2025-12-04 11:17:38 +01:00

11 lines
228 B
HCL

output "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
]
}