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 b75306c commit 779b368Copy full SHA for 779b368
main.tf
@@ -240,7 +240,7 @@ resource "aws_lambda_event_source_mapping" "this" {
240
241
batch_size = try(each.value.batch_size, null)
242
maximum_batching_window_in_seconds = try(each.value.maximum_batching_window_in_seconds, null)
243
- enabled = try(each.value.enabled, null)
+ enabled = try(each.value.enabled, true)
244
starting_position = try(each.value.starting_position, null)
245
starting_position_timestamp = try(each.value.starting_position_timestamp, null)
246
parallelization_factor = try(each.value.parallelization_factor, null)
0 commit comments