maximum concurrency to 2

This commit is contained in:
Jun-te Kim 2026-04-07 10:53:57 +00:00
parent 469401aabd
commit acbd0cfc35

View file

@ -19,13 +19,13 @@ variable "image_digest" {
variable "maximum_concurrency" { variable "maximum_concurrency" {
type = number type = number
default = 1 default = 2
description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit." description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit."
} }
variable "batch_size" { variable "batch_size" {
type = number type = number
default = 10 default = 1
} }
locals { locals {