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" 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" } } }