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