From f4673f618ea8cc2189e7354cc0c69d06efb7bf0d Mon Sep 17 00:00:00 2001 From: Ryan Ryke Date: Thu, 27 Sep 2018 22:49:18 -0700 Subject: [PATCH] Remove the brackets `listener_arns` to correct count (#13) Remove the brackets `listener_arns` to correct count --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 82e7b4e..0ab948d 100644 --- a/outputs.tf +++ b/outputs.tf @@ -45,7 +45,7 @@ output "https_listener_arn" { output "listener_arns" { description = "A list of all the listener ARNs" - value = ["${compact(concat(aws_lb_listener.http.*.arn, aws_lb_listener.https.*.arn))}"] + value = "${compact(concat(aws_lb_listener.http.*.arn, aws_lb_listener.https.*.arn))}" } output "access_logs_bucket_id" {