Skip to content

Commit eedacff

Browse files
authored
feat: Add tumbling_window_in_seconds (#623)
1 parent 4b643eb commit eedacff

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/event-source-mapping/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ module "vpc" {
247247
resource "aws_mq_broker" "this" {
248248
broker_name = random_pet.this.id
249249
engine_type = "RabbitMQ"
250-
engine_version = "3.10.10"
250+
engine_version = "3.12.13"
251251
host_instance_type = "mq.t3.micro"
252252
security_groups = [module.vpc.default_security_group_id]
253253
subnet_ids = slice(module.vpc.public_subnets, 0, 1)

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ resource "aws_lambda_event_source_mapping" "this" {
331331
topics = try(each.value.topics, null)
332332
queues = try(each.value.queues, null)
333333
function_response_types = try(each.value.function_response_types, null)
334+
tumbling_window_in_seconds = try(each.value.tumbling_window_in_seconds, null)
334335

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

0 commit comments

Comments
 (0)