We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d878d2d commit ff44366Copy full SHA for ff44366
outputs.tf
@@ -18,6 +18,16 @@ output "alb_listener_http_id" {
18
value = "${element(concat(aws_alb_listener.frontend_http.*.id, list("")), 0)}"
19
}
20
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
31
output "alb_zone_id" {
32
description = "The zone_id of the ALB to assist with creating DNS records."
33
value = "${aws_alb.main.zone_id}"
0 commit comments