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 8575fd3 commit 376d5e7Copy full SHA for 376d5e7
main.tf
@@ -228,6 +228,7 @@ resource "aws_lambda_event_source_mapping" "this" {
228
maximum_retry_attempts = lookup(each.value, "maximum_retry_attempts", null)
229
maximum_record_age_in_seconds = lookup(each.value, "maximum_record_age_in_seconds", null)
230
bisect_batch_on_function_error = lookup(each.value, "bisect_batch_on_function_error", null)
231
+ topics = lookup(each.value, "topics", null)
232
233
dynamic "destination_config" {
234
for_each = lookup(each.value, "destination_arn_on_failure", null) != null ? [true] : []
0 commit comments