Skip to content

Commit

Permalink
feat: Add tumbling_window_in_seconds (#623)
Browse files Browse the repository at this point in the history
  • Loading branch information
magreenbaum authored Sep 29, 2024
1 parent 4b643eb commit eedacff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/event-source-mapping/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ module "vpc" {
resource "aws_mq_broker" "this" {
broker_name = random_pet.this.id
engine_type = "RabbitMQ"
engine_version = "3.10.10"
engine_version = "3.12.13"
host_instance_type = "mq.t3.micro"
security_groups = [module.vpc.default_security_group_id]
subnet_ids = slice(module.vpc.public_subnets, 0, 1)
Expand Down
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ resource "aws_lambda_event_source_mapping" "this" {
topics = try(each.value.topics, null)
queues = try(each.value.queues, null)
function_response_types = try(each.value.function_response_types, null)
tumbling_window_in_seconds = try(each.value.tumbling_window_in_seconds, null)

dynamic "destination_config" {
for_each = try(each.value.destination_arn_on_failure, null) != null ? [true] : []
Expand Down

0 comments on commit eedacff

Please sign in to comment.