github.com/jsoriano/terraform@v0.6.7-0.20151026070445-8b70867fdd95/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  }