From 45605642ba7cabd3d592faac33e6ebbf09dd38e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 01:58:07 +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.43.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.39.0...v6.43.0) Updates `terraform-aws-modules/lambda/aws` from 8.7.0 to 8.8.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.7.0...v8.8.0) --- updated-dependencies: - dependency-name: hashicorp/aws dependency-version: 6.43.0 dependency-type: direct:production dependency-group: terraform - dependency-name: terraform-aws-modules/lambda/aws dependency-version: 8.8.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 73c2554..c12b585 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.7.0" + version = "8.8.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 d006d87..06d3f34 100644 --- a/terraform/terraform_config.tf +++ b/terraform/terraform_config.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 6.39.0" + version = "~> 6.43.0" } }