Skip to content

Commit 4b83a66

Browse files
authored
feat: Upgraded minimum required versions of AWS provider to 3.10 (#574)
1 parent 7f692e9 commit 4b83a66

File tree

23 files changed

+65
-28
lines changed

23 files changed

+65
-28
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,13 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
229229
| Name | Version |
230230
|------|---------|
231231
| terraform | >= 0.12.21 |
232-
| aws | >= 2.68 |
232+
| aws | >= 3.10 |
233233

234234
## Providers
235235

236236
| Name | Version |
237237
|------|---------|
238-
| aws | >= 2.68 |
238+
| aws | >= 3.10 |
239239

240240
## Inputs
241241

examples/complete-vpc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2222
| Name | Version |
2323
|------|---------|
2424
| terraform | >= 0.12.21 |
25-
| aws | >= 2.68 |
25+
| aws | >= 3.10 |
2626

2727
## Providers
2828

2929
| Name | Version |
3030
|------|---------|
31-
| aws | >= 2.68 |
31+
| aws | >= 3.10 |
3232

3333
## Inputs
3434

examples/complete-vpc/versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ terraform {
22
required_version = ">= 0.12.21"
33

44
required_providers {
5-
aws = ">= 2.68"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.10"
8+
}
69
}
710
}

examples/ipv6/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2020
| Name | Version |
2121
|------|---------|
2222
| terraform | >= 0.12.21 |
23-
| aws | >= 2.68 |
23+
| aws | >= 3.10 |
2424

2525
## Providers
2626

2727
| Name | Version |
2828
|------|---------|
29-
| aws | >= 2.68 |
29+
| aws | >= 3.10 |
3030

3131
## Inputs
3232

examples/ipv6/versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ terraform {
22
required_version = ">= 0.12.21"
33

44
required_providers {
5-
aws = ">= 2.68"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.10"
8+
}
69
}
710
}

examples/issue-108-route-already-exists/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2424
| Name | Version |
2525
|------|---------|
2626
| terraform | >= 0.12.21 |
27-
| aws | >= 2.68 |
27+
| aws | >= 3.10 |
2828

2929
## Providers
3030

examples/issue-108-route-already-exists/versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ terraform {
22
required_version = ">= 0.12.21"
33

44
required_providers {
5-
aws = ">= 2.68"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.10"
8+
}
69
}
710
}

examples/issue-44-asymmetric-private-subnets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2222
| Name | Version |
2323
|------|---------|
2424
| terraform | >= 0.12.21 |
25-
| aws | >= 2.68 |
25+
| aws | >= 3.10 |
2626

2727
## Providers
2828

examples/issue-44-asymmetric-private-subnets/versions.tf

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ terraform {
22
required_version = ">= 0.12.21"
33

44
required_providers {
5-
aws = ">= 2.68"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.10"
8+
}
69
}
710
}

examples/issue-46-no-private-subnets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note that this example may create resources which can cost money (AWS Elastic IP
2222
| Name | Version |
2323
|------|---------|
2424
| terraform | >= 0.12.21 |
25-
| aws | >= 2.68 |
25+
| aws | >= 3.10 |
2626

2727
## Providers
2828

0 commit comments

Comments
 (0)