Files
but3-iac/tp-cloud/terraform/modules/network/outputs.tf
2025-12-04 09:31:27 +01:00

24 lines
573 B
HCL

output "vpc_terraform_output" {
value = google_compute_network.vpc_terraform.id
}
output "list_id" {
value = {
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
}
}
output "vpc_id" {
value = google_compute_network.vpc.id
}
output "subnets" {
value = {
frontend = google_compute_subnetwork.frontend.id
backend = google_compute_subnetwork.backend.id
database = google_compute_subnetwork.database.id
}
}