Files
but3-iac/terraform/modules/network/outputs.tf

12 lines
299 B
Terraform
Raw Normal View History

2025-12-04 10:07:08 +00:00
2025-12-04 11:16:29 +01:00
output "vpc" {
value = google_compute_network.vpc_terraform.id
2025-12-04 10:07:08 +00:00
}
2025-12-04 11:16:29 +01:00
output "subnets" {
value = {
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
}
}