github.com/blacked/terraform@v0.6.2-0.20150806163846-669c4ad71586/examples/aws-asg/outputs.tf (about)

     1  output "security_group" {
     2      value = "${aws_security_group.default.id}"
     3  }
     4  output "launch_configuration" {
     5      value = "${aws_launch_configuration.web-lc.id}"
     6  }
     7  output "asg_name" {
     8      value = "${aws_autoscaling_group.web-asg.id}"
     9  }
    10  output "elb_name" {
    11      value = "${aws_elb.web-elb.dns_name}"
    12  }