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 596d28b commit ef15469Copy full SHA for ef15469
infrastructure/lambda-bulk-upload.tf
@@ -58,7 +58,7 @@ module "bulk-upload-lambda" {
58
resource "aws_lambda_event_source_mapping" "bulk_upload_lambda" {
59
event_source_arn = module.sqs-lg-bulk-upload-metadata-queue.sqs_arn
60
function_name = module.bulk-upload-lambda.lambda_arn
61
- enabled = false # Disabled by default; scheduler lambda will control
+ enabled = local.is_sandbox ? true : false # Disabled by default; scheduler lambda will control
62
batch_size = 10
63
scaling_config {
64
maximum_concurrency = local.bulk_upload_lambda_concurrent_limit
0 commit comments