Commit 3a4f81b5 authored by Chris Merrett's avatar Chris Merrett

Add elb ID as an output

parent 93349b7a
...@@ -141,6 +141,9 @@ resource "aws_elb" "main" { ...@@ -141,6 +141,9 @@ resource "aws_elb" "main" {
############################################################################################################# #############################################################################################################
# Outputs # Outputs
############################################################################################################# #############################################################################################################
output "id" {
value = "${aws_elb.main.id}"
}
output "name" { output "name" {
value = "${aws_elb.main.name}" value = "${aws_elb.main.name}"
} }
...@@ -153,6 +156,3 @@ output "zone_id" { ...@@ -153,6 +156,3 @@ output "zone_id" {
output "security_group" { output "security_group" {
value = "${aws_security_group.main.id}" value = "${aws_security_group.main.id}"
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment