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 7212e53 commit 3db2cf9Copy full SHA for 3db2cf9
outputs.tf
@@ -10,12 +10,12 @@ output "alb_id" {
10
11
output "alb_listener_https_id" {
12
description = "The ID of the ALB Listener we created."
13
- value = "${aws_alb_listener.frontend_https.id}"
+ value = "${element(concat(aws_alb_listener.frontend_https.*.id, list("")), 0)}"
14
}
15
16
output "alb_listener_http_id" {
17
18
- value = "${aws_alb_listener.frontend_http.id}"
+ value = "${element(concat(aws_alb_listener.frontend_http.*.id, list("")), 0)}"
19
20
21
output "alb_zone_id" {
0 commit comments