github.com/spirius/terraform@v0.10.0-beta2.0.20170714185654-87b2c0cf8fea/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  }