Skip to content

Commit 76bb17b

Browse files
Merge pull request #13 from mbolek/alb_listener_outputs
Added ALB listener outputs.
2 parents f3b4541 + b9f095e commit 76bb17b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

outputs.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ output "alb_id" {
88
value = "${aws_alb.main.id}"
99
}
1010

11+
output "alb_listener_https_id" {
12+
description = "The ID of the ALB Listener we created."
13+
value = "${aws_alb_listener.frontend_https.id}"
14+
}
15+
16+
output "alb_listener_http_id" {
17+
description = "The ID of the ALB Listener we created."
18+
value = "${aws_alb_listener.frontend_http.id}"
19+
}
20+
1121
output "alb_zone_id" {
1222
description = "The zone_id of the ALB to assist with creating DNS records."
1323
value = "${aws_alb.main.zone_id}"

0 commit comments

Comments
 (0)