Skip to content

Commit

Permalink
Remove aws provider v4 cap
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-edwards-nz committed Mar 20, 2022
1 parent 1ce484f commit ee96127
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ Branch 0.11 is compatible with Terraform 0.11 but is no longer supported or main
## Tooling requirements
This module supports Terraform `0.13.0` (with backwards compatibility for Terraform `0.12.31`)

If you experience issues with this module as a result of aws provider v4.0.0 and above we recommend creating an override to cap the provider version. For example:

```
aws = {
source : "hashicorp/aws",
version : ">= 3.38.0, < 4.0.0"
}
```

# Supported Implementations

## No Datastore
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source : "hashicorp/aws",
version : ">= 3.38.0, < 4.0.0"
version : ">= 3.38.0"
}
null = {
source : "hashicorp/null",
Expand Down

0 comments on commit ee96127

Please sign in to comment.