Skip to content

Commit 376d5e7

Browse files
feat: Add topics parameter support for lambda event source (#166)
1 parent 8575fd3 commit 376d5e7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ resource "aws_lambda_event_source_mapping" "this" {
228228
maximum_retry_attempts = lookup(each.value, "maximum_retry_attempts", null)
229229
maximum_record_age_in_seconds = lookup(each.value, "maximum_record_age_in_seconds", null)
230230
bisect_batch_on_function_error = lookup(each.value, "bisect_batch_on_function_error", null)
231+
topics = lookup(each.value, "topics", null)
231232

232233
dynamic "destination_config" {
233234
for_each = lookup(each.value, "destination_arn_on_failure", null) != null ? [true] : []

0 commit comments

Comments
 (0)