mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
24 lines
514 B
HCL
24 lines
514 B
HCL
variable "name" { type = string }
|
|
variable "role_arn" { type = string }
|
|
variable "image_uri" { type = string }
|
|
|
|
variable "timeout" {
|
|
type = number
|
|
default = 30
|
|
}
|
|
|
|
variable "memory_size" {
|
|
type = number
|
|
default = 512
|
|
}
|
|
|
|
variable "environment" {
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "reserved_concurrent_executions" {
|
|
type = number
|
|
default = -1
|
|
description = "Reserved concurrency for the Lambda function. -1 = unreserved (default). 0 = throttle all. 1+ = hard limit."
|
|
}
|