juntekim.com/terraform/lambda/modules/lambda_with_sqs/variables.tf
2026-02-17 23:28:47 +00:00

36 lines
432 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
}