mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
20 lines
437 B
HCL
20 lines
437 B
HCL
output "vpc_network_name" {
|
|
value = google_compute_network.vpc_network.name
|
|
}
|
|
|
|
output "subnet_name" {
|
|
value = google_compute_subnetwork.vpc_subnet.name
|
|
}
|
|
|
|
output "subnet_cidr_range" {
|
|
value = google_compute_subnetwork.vpc_subnet.ip_cidr_range
|
|
}
|
|
|
|
output "frontend_firewall_name" {
|
|
value = google_compute_firewall.frontend_firewall.name
|
|
}
|
|
|
|
output "backend_firewall_name" {
|
|
value = google_compute_firewall.backend_firewall.name
|
|
}
|