Skip to content

Commit 1af52c1

Browse files
authored
Fixes for tf v15
1 parent de9153e commit 1af52c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ locals {
134134
balanced = var.container_port > 0
135135
load_balancer_container_name = coalesce(var.load_balancer_container_name, var.service_name)
136136

137-
target_group_names = coalescelist(distinct(compact(concat(var.target_group_names, tolist(var.target_group_name)))), tolist(var.cluster_name))
137+
target_group_names = coalescelist(distinct(compact(concat(var.target_group_names, [var.target_group_name]))), [var.cluster_name])
138138

139139
default_log_configuration = {
140140
"logDriver" = "awslogs"

0 commit comments

Comments
 (0)