Skip to content

Commit 30781a1

Browse files
authored
Merge pull request #26 from souza-dan/aws-provider
DEV-15168 - Adjusts AWS provider constraints to allow newer versions
2 parents 47a999d + fc3a43f commit 30781a1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

modules/aws-es/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.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"
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
}

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.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"
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)