Files

15 lines
300 B
Terraform
Raw Permalink Normal View History

2025-12-04 11:47:32 +01:00
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" {
value = google_compute_network.vpc.id
}