Skip to content

Commit 2af3472

Browse files
committed
Fixing error in output values
1 parent f685cd6 commit 2af3472

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

outputs.tf

+10-10
Original file line numberDiff line numberDiff line change
@@ -74,53 +74,53 @@ output "aws_security_group_lb_access_sg_egress" {
7474
# ---------------------------------------------------------------------------------------------------------------------
7575
output "lb_http_tgs_ids" {
7676
description = "List of HTTP Target Groups IDs"
77-
value = ["${aws_lb_target_group.lb_http_tgs.*.id}"]
77+
value = aws_lb_target_group.lb_http_tgs.*.id
7878
}
7979

8080
output "lb_http_tgs_arns" {
8181
description = "List of HTTP Target Groups ARNs"
82-
value = ["${aws_lb_target_group.lb_http_tgs.*.arn}"]
82+
value = aws_lb_target_group.lb_http_tgs.*.arn
8383
}
8484

8585
output "lb_http_tgs_names" {
8686
description = "List of HTTP Target Groups Names"
87-
value = ["${aws_lb_target_group.lb_http_tgs.*.name}"]
87+
value = aws_lb_target_group.lb_http_tgs.*.name
8888
}
8989

9090
output "lb_https_tgs_ids" {
9191
description = "List of HTTPS Target Groups IDs"
92-
value = ["${aws_lb_target_group.lb_https_tgs.*.id}"]
92+
value = aws_lb_target_group.lb_https_tgs.*.id
9393
}
9494

9595
output "lb_https_tgs_arns" {
9696
description = "List of HTTPS Target Groups ARNs"
97-
value = ["${aws_lb_target_group.lb_https_tgs.*.arn}"]
97+
value = aws_lb_target_group.lb_https_tgs.*.arn
9898
}
9999

100100
output "lb_https_tgs_names" {
101101
description = "List of HTTPS Target Groups Names"
102-
value = ["${aws_lb_target_group.lb_https_tgs.*.name}"]
102+
value = aws_lb_target_group.lb_https_tgs.*.name
103103
}
104104

105105
# ---------------------------------------------------------------------------------------------------------------------
106106
# AWS LOAD BALANCER - Listeners
107107
# ---------------------------------------------------------------------------------------------------------------------
108108
output "lb_http_listeners_ids" {
109109
description = "List of HTTP Listeners IDs"
110-
value = ["${aws_lb_listener.lb_http_listeners.*.id}"]
110+
value = aws_lb_listener.lb_http_listeners.*.id
111111
}
112112

113113
output "lb_http_listeners_arns" {
114114
description = "List of HTTP Listeners ARNs"
115-
value = ["${aws_lb_listener.lb_http_listeners.*.arn}"]
115+
value = aws_lb_listener.lb_http_listeners.*.arn
116116
}
117117

118118
output "lb_https_listeners_ids" {
119119
description = "List of HTTPS Listeners IDs"
120-
value = ["${aws_lb_listener.lb_https_listeners.*.id}"]
120+
value = aws_lb_listener.lb_https_listeners.*.id
121121
}
122122

123123
output "lb_https_listeners_arns" {
124124
description = "List of HTTPS Listeners ARNs"
125-
value = ["${aws_lb_listener.lb_https_listeners.*.arn}"]
125+
value = aws_lb_listener.lb_https_listeners.*.arn
126126
}

0 commit comments

Comments
 (0)