github.com/candidpartners/terraform@v0.9.5-0.20171005231213-29f5f88820f6/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 }