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

examples/issue-46-no-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/manage-default-vpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Run `terraform destroy` when you don't need these resources.
2222
| Name | Version |
2323
|------|---------|
2424
| terraform | >= 0.12.21 |
25-
| aws | >= 2.68 |
25+
| aws | >= 3.10 |
2626

2727
## Providers
2828

examples/manage-default-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/network-acls/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/network-acls/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/secondary-cidr-blocks/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/secondary-cidr-blocks/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/simple-vpc/README.md

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

3131
## Providers
3232

examples/simple-vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "vpc" {
1515

1616
enable_ipv6 = true
1717

18-
enable_nat_gateway = true
18+
enable_nat_gateway = false
1919
single_nat_gateway = true
2020

2121
# s3_endpoint_type = "Interface"

examples/simple-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/vpc-flow-logs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ 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
| random | >= 2 |
2929

3030
## Providers
3131

3232
| Name | Version |
3333
|------|---------|
34-
| aws | >= 2.68 |
34+
| aws | >= 3.10 |
3535
| random | >= 2 |
3636

3737
## Inputs

examples/vpc-flow-logs/versions.tf

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@ terraform {
22
required_version = ">= 0.12.21"
33

44
required_providers {
5-
aws = ">= 2.68"
6-
random = ">= 2"
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = ">= 3.10"
8+
}
9+
10+
random = {
11+
source = "hashicorp/random"
12+
version = ">= 2"
13+
}
714
}
815
}

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
}

0 commit comments

Comments
 (0)