Skip to content

Commit a2da238

Browse files
authored
Merge pull request #29 from souza-dan/aws-provider
DEV-15168 - Adjusts AWS provider constraints to allow newer versions
2 parents 2575468 + c29b236 commit a2da238

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Tamr Terraform Template Repo
22

3+
## v4.0.1 - August 4th 2022
4+
* Adjusts AWS provider constraints to allow newer versions
5+
36
## v4.0.0 - July 20th 2022
47
* Remove unused variables security_group_name, vpc_id, and additional_cidrs
58

README.md

Lines changed: 2 additions & 2 deletions
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, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0 |
39+
| aws | >= 3.36, !=4.0.0, !=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, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0 |
45+
| aws | >= 3.36, !=4.0.0, !=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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0
1+
4.0.1

versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
terraform {
22
required_version = ">= 0.13"
33
required_providers {
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"
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = ">= 3.36, !=4.0.0, !=4.1.0, !=4.2.0, !=4.3.0, !=4.4.0, !=4.5.0, !=4.6.0, !=4.7.0, !=4.8.0"
7+
}
58
}
69
}

0 commit comments

Comments
 (0)