Skip to content

Commit d0ebb22

Browse files
PRMT-466- fixed list
1 parent 1bb7d76 commit d0ebb22

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

infrastructure/sqs_alarms.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ locals {
4747
# }
4848

4949
# using a list instead of map
50-
5150
monitored_queue_day_list = flatten([
5251
for queue_key in keys(local.monitored_queues) : [
5352
for day in local.days_until_alarm : [
54-
[queue_key, local.monitored_queues[queue_key], day]
53+
queue_key,
54+
local.monitored_queues[queue_key],
55+
day
5556
]
5657
]
5758
])

0 commit comments

Comments
 (0)