Skip to content

Commit e5b6aee

Browse files
authored
Merge pull request #27 from souza-dan/less-strict-provider
CORE-223 - adjusts provider version to be more permissive of newer providers
2 parents 86a0953 + fa70e91 commit e5b6aee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ This terraform module will create:
3636
| Name | Version |
3737
|------|---------|
3838
| terraform | >= 0.13 |
39-
| aws | >= 3.36.0, < 4.0.0 |
39+
| aws | >= 3.36, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0 |
4040

4141
## Providers
4242

4343
| Name | Version |
4444
|------|---------|
45-
| aws | >= 3.36.0, < 4.0.0 |
45+
| aws | >= 3.36, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0 |
4646

4747
## Inputs
4848

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
terraform {
22
required_version = ">= 0.13"
33
required_providers {
4-
aws = ">= 3.36.0, < 4.0.0"
4+
aws = ">= 3.36, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0"
55
}
66
}

0 commit comments

Comments
 (0)