diff --git a/CHANGELOG.md b/CHANGELOG.md index 24f198b..8e727d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.1.0 + +- [Bump hashicorp/aws dependency](https://github.com/babbel/terraform-aws-acm/pull/3) + ## v1.0.0 - [Initial version](https://github.com/babbel/terraform-aws-acm/pull/1) diff --git a/README.md b/README.md index e328f38..c64b991 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is a simplified version of the [`terraform-aws-modules/acm/aws`](https://re ```tf module "acm" { source = "babbel/acm/aws" - version = "~> 1.0" + version = "~> 1.1" primary_domain_name = "example.com" diff --git a/versions.tf b/versions.tf index 03a5066..aa69a59 100644 --- a/versions.tf +++ b/versions.tf @@ -2,7 +2,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 3.0" + version = ">= 3, < 5" } } required_version = ">= 0.13"