From dd4fcfe3d95ca7d89de7e6305e4c107f8b9f3379 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:33:50 +0000 Subject: [PATCH] build(deps): bump the terraform group in /terraform with 2 updates Updates the requirements on [hashicorp/aws](https://github.com/hashicorp/terraform-provider-aws) and [terraform-aws-modules/lambda/aws](https://github.com/terraform-aws-modules/terraform-aws-lambda) to permit the latest version. Updates `hashicorp/aws` to 6.34.0 - [Release notes](https://github.com/hashicorp/terraform-provider-aws/releases) - [Changelog](https://github.com/hashicorp/terraform-provider-aws/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-provider-aws/compare/v6.30.0...v6.34.0) Updates `terraform-aws-modules/lambda/aws` from 8.4.0 to 8.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/v8.4.0...v8.7.0) --- updated-dependencies: - dependency-name: hashicorp/aws dependency-version: 6.34.0 dependency-type: direct:production dependency-group: terraform - dependency-name: terraform-aws-modules/lambda/aws dependency-version: 8.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: terraform ... Signed-off-by: dependabot[bot] --- terraform/lambda.tf | 2 +- terraform/terraform_config.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/lambda.tf b/terraform/lambda.tf index a97e9be..73c2554 100644 --- a/terraform/lambda.tf +++ b/terraform/lambda.tf @@ -2,7 +2,7 @@ ## Function module "lambda_function" { source = "terraform-aws-modules/lambda/aws" - version = "8.4.0" + version = "8.7.0" function_name = lower(local.global_name) description = var.lambda_function.default.lambda_description diff --git a/terraform/terraform_config.tf b/terraform/terraform_config.tf index d6c502f..f0d1bb4 100644 --- a/terraform/terraform_config.tf +++ b/terraform/terraform_config.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 6.30.0" + version = "~> 6.34.0" } }