github.com/leeprovoost/terraform@v0.6.10-0.20160119085442-96f3f76118e7/examples/google-two-tier/output.tf (about)

     1  output "pool_public_ip" {
     2    value = "${google_compute_forwarding_rule.default.ip_address}"
     3  }
     4  
     5  output "instance_ips" {
     6    value = "${join(" ", google_compute_instance.www.*.network_interface.0.access_config.0.nat_ip)}"
     7  }