You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/examples/google-two-tier/output.tf

8 lines
228 B

output "pool_public_ip" {
value = "${google_compute_forwarding_rule.default.ip_address}"
}
output "instance_ips" {
value = "${join(" ", google_compute_instance.www.*.network_interface.0.access_config.0.assigned_nat_ip)}"
}