From 8005c8d2f5e8c8a6b00b47e3c6998de96cc953f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Feb 2026 22:34:37 +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.30.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.27.0...v6.30.0) Updates `terraform-aws-modules/lambda/aws` from 8.1.2 to 8.4.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.1.2...v8.4.0) --- updated-dependencies: - dependency-name: hashicorp/aws dependency-version: 6.30.0 dependency-type: direct:production dependency-group: terraform - dependency-name: terraform-aws-modules/lambda/aws dependency-version: 8.4.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 cf3cbf9..a97e9be 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.1.2" + version = "8.4.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 8a7c44b..d6c502f 100644 --- a/terraform/terraform_config.tf +++ b/terraform/terraform_config.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 6.27.0" + version = "~> 6.30.0" } }