github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/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  }