From 22b842bbe660412f8ec0b2ed8e8000f1e58b4267 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:40:25 +0000 Subject: [PATCH] Bump terraform-aws-modules/lambda/aws in /terraform/20-app Bumps [terraform-aws-modules/lambda/aws](https://github.com/terraform-aws-modules/terraform-aws-lambda) from 6.4.0 to 6.7.0. - [Release notes](https://github.com/terraform-aws-modules/terraform-aws-lambda/releases) - [Changelog](https://github.com/terraform-aws-modules/terraform-aws-lambda/blob/master/CHANGELOG.md) - [Commits](https://github.com/terraform-aws-modules/terraform-aws-lambda/compare/v6.4.0...v6.7.0) --- updated-dependencies: - dependency-name: terraform-aws-modules/lambda/aws dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- terraform/20-app/lambda.ingestion.tf | 2 +- terraform/20-app/lambda.producer.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/20-app/lambda.ingestion.tf b/terraform/20-app/lambda.ingestion.tf index d067426f..f098dd55 100644 --- a/terraform/20-app/lambda.ingestion.tf +++ b/terraform/20-app/lambda.ingestion.tf @@ -1,6 +1,6 @@ module "lambda_ingestion" { source = "terraform-aws-modules/lambda/aws" - version = "6.4.0" + version = "6.7.0" function_name = "${local.prefix}-ingestion" description = "Consumes records from the Kinesis data stream." diff --git a/terraform/20-app/lambda.producer.tf b/terraform/20-app/lambda.producer.tf index a11c2bae..78461f79 100644 --- a/terraform/20-app/lambda.producer.tf +++ b/terraform/20-app/lambda.producer.tf @@ -1,6 +1,6 @@ module "lambda_producer" { source = "terraform-aws-modules/lambda/aws" - version = "6.4.0" + version = "6.7.0" function_name = "${local.prefix}-producer" description = "Acts as the conduit between the S3 ingest bucket and the Kinesis data stream."