diff --git a/.gitignore b/.gitignore index a5caa8d..8cb9b0f 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ vendor # Terratest directory used to store temporary data .test-data +.terratest # Terraform crash log files crash.log diff --git a/CHANGELOG.md b/CHANGELOG.md index 11ec1eb..61a334c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Added support for AWS provider `v5.x` + ## [0.9.2] ### Added diff --git a/README.md b/README.md index 99926dc..0a035f9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ A [Terraform] module for deploying and managing on [Amazon Web Services (AWS)][AWS]. *This module supports Terraform v1.x, v0.15, v0.14, v0.13 as well as v0.12.20 and above -and is compatible with the Terraform AWS provider v3.50 and above. +and is compatible with the Terraform AWS provider versions above v3.50 and below v6.0. - [Module Features](#module-features) diff --git a/test/unit-complete/main.tf b/test/unit-complete/main.tf index a647107..78363a4 100644 --- a/test/unit-complete/main.tf +++ b/test/unit-complete/main.tf @@ -14,7 +14,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = "~> 5.0" } } } diff --git a/test/unit-disabled/main.tf b/test/unit-disabled/main.tf index 912e9af..3d062e1 100644 --- a/test/unit-disabled/main.tf +++ b/test/unit-disabled/main.tf @@ -14,7 +14,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = "~> 4.0" + version = "~> 5.0" } } } diff --git a/versions.tf b/versions.tf index abb8b73..9bf2157 100644 --- a/versions.tf +++ b/versions.tf @@ -6,6 +6,6 @@ terraform { required_version = ">= 0.12.20, < 2.0" required_providers { - aws = ">= 3.50, < 5.0" + aws = ">= 3.50, < 6.0" } }