From 4dcc927e905142e89b7d5a0ddc96a9f300913169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Wendt?= Date: Fri, 18 Mar 2022 09:39:31 +0100 Subject: [PATCH 1/2] Relax version constraint for hashicorp/aws --- versions.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.tf b/versions.tf index b8dfaae..2d49cc0 100644 --- a/versions.tf +++ b/versions.tf @@ -8,7 +8,7 @@ terraform { } aws = { source = "hashicorp/aws" - version = "~> 3.0" + version = ">= 3, < 5" } } } From 2eca9ae27a1b9f6ee0ec8ad316813566d7c9c86f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Wendt?= Date: Fri, 18 Mar 2022 09:40:45 +0100 Subject: [PATCH 2/2] Add v1.2 to CHANGELOG --- CHANGELOG.md | 4 ++++ README.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df7eff0..c5f3532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.2.0 + +- [Bump hashicorp/aws dependency](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/14) + ## v1.1.0 - [Add layers attribute](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/7) - [Add secret environment variables attribute](https://github.com/babbel/terraform-aws-lambda-with-inline-code/pull/8) diff --git a/README.md b/README.md index 6e714a8..0cb8ec0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This module creates a Lambda function, as well as its IAM role and CloudWatch Lo ```tf module "lambda" { source = "babbel/lambda-with-inline-code/aws" - version = "~> 1.0" + version = "~> 1.2" function_name = "example" description = "This is an example"