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 d0ebb22 commit 39c8489Copy full SHA for 39c8489
infrastructure/sqs_alarms.tf
@@ -47,13 +47,11 @@ locals {
47
# }
48
49
# using a list instead of map
50
+
51
monitored_queue_day_list = flatten([
52
for queue_key in keys(local.monitored_queues) : [
- for day in local.days_until_alarm : [
53
- queue_key,
54
- local.monitored_queues[queue_key],
55
- day
56
- ]
+ for day in local.days_until_alarm :
+ [queue_key, local.monitored_queues[queue_key], day]
57
]
58
])
59
}
0 commit comments