Model/infrastructure/terraform/modules/lambda_with_sqs/variables.tf
2026-04-07 09:51:26 +00:00

42 lines
602 B
HCL

variable "name" {
type = string
}
variable "stage" {
type = string
}
variable "image_uri" {
type = string
}
variable "region" {
type = string
default = "eu-west-2"
}
variable "timeout" {
type = number
default = 60
}
variable "memory_size" {
type = number
default = 1024
}
variable "environment" {
type = map(string)
default = {}
}
variable "batch_size" {
type = number
default = 10
}
variable "maximum_concurrency" {
type = number
default = 1
description = "Maximum number of concurrent Lambda invocations from SQS. null = no limit."
}