github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/examples/aws-asg/outputs.tf (about) 1 output "security_group" { 2 value = "${aws_security_group.default.id}" 3 } 4 5 output "launch_configuration" { 6 value = "${aws_launch_configuration.web-lc.id}" 7 } 8 9 output "asg_name" { 10 value = "${aws_autoscaling_group.web-asg.id}" 11 } 12 13 output "elb_name" { 14 value = "${aws_elb.web-elb.dns_name}" 15 }