github.com/jrasell/terraform@v0.6.17-0.20160523115548-2652f5232949/examples/clc/outputs.tf (about) 1 output "group_id" { 2 value = "${clc_group.frontends.id}" 3 } 4 5 output "node_id" { 6 value = "${clc_server.node.id}" 7 } 8 9 output "node_ip" { 10 value = "${clc_server.node.private_ip_address}" 11 } 12 13 output "node_password" { 14 value = "${clc_server.node.password}" 15 } 16 17 output "backdoor" { 18 value = "${clc_public_ip.backdoor.id}" 19 } 20 21 output "frontdoor" { 22 value = "${clc_load_balancer.frontdoor.ip_address}" 23 } 24 25 output "pool" { 26 value = "curl -vv ${clc_load_balancer.frontdoor.ip_address}" 27 }