add concurrency to categorisation lambda

This commit is contained in:
Daniel Roth 2026-02-24 17:35:41 +00:00
parent eea435d641
commit 5680defa59

View file

@ -17,6 +17,11 @@ variable "image_digest" {
description = "Image digest (sha256:...)"
}
variable "maximum_concurrency" {
type = number
default = 10 # null if you don't want to set it for this handler
description = "Maximum number of concurrent Lambda invocations from SQS (2-1000). null = no limit."
}
locals {
image_uri = "${var.ecr_repo_url}@${var.image_digest}"