Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ module "lambda" {
create_unqualified_alias_async_event_config = var.create_unqualified_alias_async_event_config
destination_on_failure = var.destination_on_failure
destination_on_success = var.destination_on_success
maximum_event_age_in_seconds = var.maximum_event_age_in_seconds
maximum_retry_attempts = var.maximum_retry_attempts
allowed_triggers = var.allowed_triggers

create_lambda_function_url = var.create_lambda_function_url
Expand Down
12 changes: 12 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -508,3 +508,15 @@ variable "destination_on_success" {
type = string
default = null
}

variable "maximum_event_age_in_seconds" {
description = "Maximum age of a request that Lambda sends to a function for processing in seconds. Valid values between 60 and 21600."
type = number
default = null
}

variable "maximum_retry_attempts" {
description = "Maximum number of times to retry when the function returns an error. Valid values between 0 and 2."
type = number
default = null
}
Loading