We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
topics
event_sources
1 parent 36d4cda commit 04fd074Copy full SHA for 04fd074
2 files changed
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# 0.4.16 (Feb 27, 2025)
2
+* Fixed `topics` usage from `event_sources` in capabilities.
3
+
4
# 0.4.15 (Feb 26, 2025)
5
* Added `var.reserved_concurrency` to relax compliance for flexibility launching new lambda functions.
6
event_sources.tf
@@ -15,5 +15,5 @@ resource "aws_lambda_event_source_mapping" "caps" {
15
16
batch_size = try(each.value.batch_size, null)
17
starting_position = try(each.value.starting_position, null)
18
- topics = try(each.value.topics, null)
+ topics = try(toset(jsondecode(each.value.topics)), null)
19
}
0 commit comments