terraform/examples/aws-asg/outputs.tf

16 lines
292 B
Terraform
Raw Normal View History

2015-06-08 01:28:46 +02:00
output "security_group" {
value = "${aws_security_group.default.id}"
2015-06-08 01:28:46 +02:00
}
2015-06-08 01:28:46 +02:00
output "launch_configuration" {
value = "${aws_launch_configuration.web-lc.id}"
2015-06-08 01:28:46 +02:00
}
2015-06-08 01:28:46 +02:00
output "asg_name" {
value = "${aws_autoscaling_group.web-asg.id}"
2015-06-08 01:28:46 +02:00
}
2015-06-08 01:28:46 +02:00
output "elb_name" {
value = "${aws_elb.web-elb.dns_name}"
}