From 2c39f64731382497b3d53fb5e470c4bfb32dc8ae Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 7 Apr 2026 09:58:22 +0000 Subject: [PATCH] maximum concurrency --- infrastructure/terraform/modules/lambda_with_sqs/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/modules/lambda_with_sqs/variables.tf b/infrastructure/terraform/modules/lambda_with_sqs/variables.tf index 6d992f3b..7c2832d2 100644 --- a/infrastructure/terraform/modules/lambda_with_sqs/variables.tf +++ b/infrastructure/terraform/modules/lambda_with_sqs/variables.tf @@ -37,6 +37,6 @@ variable "batch_size" { variable "maximum_concurrency" { type = number - default = 1 + default = null description = "Maximum number of concurrent Lambda invocations from SQS. null = no limit." }