Skip to content

Commit ff44366

Browse files
proj4spesbrandonjbjelland
authored andcommitted
Added http and https listener ARNs (#25)
1 parent d878d2d commit ff44366

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
@@ -18,6 +18,16 @@ output "alb_listener_http_id" {
1818
value = "${element(concat(aws_alb_listener.frontend_http.*.id, list("")), 0)}"
1919
}
2020

21+
output "alb_listener_http_arn" {
22+
description = "The ARN of the HTTP ALB Listener we created."
23+
value = "${element(concat(aws_alb_listener.frontend_http.*.arn, list("")), 0)}"
24+
}
25+
26+
output "alb_listener_https_arn" {
27+
description = "The ARN of the HTTPS ALB Listener we created."
28+
value = "${element(concat(aws_alb_listener.frontend_https.*.arn, list("")), 0)}"
29+
}
30+
2131
output "alb_zone_id" {
2232
description = "The zone_id of the ALB to assist with creating DNS records."
2333
value = "${aws_alb.main.zone_id}"

0 commit comments

Comments
 (0)