From acbd0cfc35e3d382b73802e6d5fb6b44a1d73951 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Tue, 7 Apr 2026 10:53:57 +0000 Subject: [PATCH] maximum concurrency to 2 --- infrastructure/terraform/lambda/hubspot_deal_etl/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/lambda/hubspot_deal_etl/variables.tf b/infrastructure/terraform/lambda/hubspot_deal_etl/variables.tf index 27c9424b..499f9cc5 100644 --- a/infrastructure/terraform/lambda/hubspot_deal_etl/variables.tf +++ b/infrastructure/terraform/lambda/hubspot_deal_etl/variables.tf @@ -19,13 +19,13 @@ variable "image_digest" { variable "maximum_concurrency" { type = number - default = 1 + default = 2 description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." } variable "batch_size" { type = number - default = 10 + default = 1 } locals {