put batch size as well

This commit is contained in:
Jun-te Kim 2026-03-06 13:51:47 +00:00
parent 9852eb631b
commit 58843a5409

View file

@ -23,6 +23,11 @@ variable "maximum_concurrency" {
description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit."
}
variable "batch_size" {
type = number
default = 1
}
locals {
image_uri = "${var.ecr_repo_url}@${var.image_digest}"
}