maximum concurrent

This commit is contained in:
Jun-te Kim 2026-04-07 09:51:26 +00:00
parent 23d7b22b54
commit 959867f5ee
6 changed files with 7 additions and 7 deletions

View file

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

View file

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

View file

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

View file

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

View file

@ -9,6 +9,6 @@ variable "batch_size" {
variable "maximum_concurrency" {
type = number
default = null
default = 1
description = "Maximum number of concurrent Lambda invocations from SQS. null = no limit."
}

View file

@ -37,6 +37,6 @@ variable "batch_size" {
variable "maximum_concurrency" {
type = number
default = null
default = 1
description = "Maximum number of concurrent Lambda invocations from SQS. null = no limit."
}