Skip to content

Commit 662cdc0

Browse files
chore!: update AWS provider version to 6.12.0 across all modules and examples
- Updated AWS provider version from >= 5.89 to >= 6.12.0 in README and versions.tf files for all examples and modules. - Adjusted VPC module version from ~> 5.0 to ~> 6.0 in relevant examples. - Updated KMS module version from ~> 2.0 to ~> 4.0 in examples where applicable.
1 parent 4025104 commit 662cdc0

File tree

30 files changed

+61
-61
lines changed

30 files changed

+61
-61
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,13 @@ Terraform documentation is generated automatically using [pre-commit hooks](http
255255
| Name | Version |
256256
|------|---------|
257257
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
258-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.89 |
258+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.12.0 |
259259

260260
## Providers
261261

262262
| Name | Version |
263263
|------|---------|
264-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.89 |
264+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.12.0 |
265265

266266
## Modules
267267

examples/autoscaling/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.89 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.12.0 |
2424

2525
## Providers
2626

2727
| Name | Version |
2828
|------|---------|
29-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.89 |
29+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.12.0 |
3030

3131
## Modules
3232

3333
| Name | Source | Version |
3434
|------|--------|---------|
3535
| <a name="module_aurora"></a> [aurora](#module\_aurora) | ../../ | n/a |
3636
| <a name="module_disabled_aurora"></a> [disabled\_aurora](#module\_disabled\_aurora) | ../../ | n/a |
37-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
37+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
3838

3939
## Resources
4040

examples/autoscaling/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module "disabled_aurora" {
7171

7272
module "vpc" {
7373
source = "terraform-aws-modules/vpc/aws"
74-
version = "~> 5.0"
74+
version = "~> 6.0"
7575

7676
name = local.name
7777
cidr = local.vpc_cidr

examples/autoscaling/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.89"
7+
version = ">= 6.12.0"
88
}
99
}
1010
}

examples/dsql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.100 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.12.0 |
2424

2525
## Providers
2626

examples/dsql/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.100"
7+
version = ">= 6.12.0"
88
}
99
}
1010
}

examples/global-cluster/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.89 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.12.0 |
2424
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.2 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.89 |
31-
| <a name="provider_aws.secondary"></a> [aws.secondary](#provider\_aws.secondary) | >= 5.89 |
30+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.12.0 |
31+
| <a name="provider_aws.secondary"></a> [aws.secondary](#provider\_aws.secondary) | >= 6.12.0 |
3232
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.2 |
3333

3434
## Modules
@@ -37,8 +37,8 @@ Note that this example may create resources which cost money. Run `terraform des
3737
|------|--------|---------|
3838
| <a name="module_aurora_primary"></a> [aurora\_primary](#module\_aurora\_primary) | ../../ | n/a |
3939
| <a name="module_aurora_secondary"></a> [aurora\_secondary](#module\_aurora\_secondary) | ../../ | n/a |
40-
| <a name="module_primary_vpc"></a> [primary\_vpc](#module\_primary\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
41-
| <a name="module_secondary_vpc"></a> [secondary\_vpc](#module\_secondary\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
40+
| <a name="module_primary_vpc"></a> [primary\_vpc](#module\_primary\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
41+
| <a name="module_secondary_vpc"></a> [secondary\_vpc](#module\_secondary\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4242

4343
## Resources
4444

examples/global-cluster/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ resource "random_password" "master" {
120120

121121
module "primary_vpc" {
122122
source = "terraform-aws-modules/vpc/aws"
123-
version = "~> 5.0"
123+
version = "~> 6.0"
124124

125125
name = local.name
126126
cidr = local.primary_vpc_cidr
@@ -136,7 +136,7 @@ module "primary_vpc" {
136136

137137
module "secondary_vpc" {
138138
source = "terraform-aws-modules/vpc/aws"
139-
version = "~> 5.0"
139+
version = "~> 6.0"
140140

141141
providers = { aws = aws.secondary }
142142

examples/global-cluster/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.89"
7+
version = ">= 6.12.0"
88
}
99

1010
random = {

examples/limitless/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ Note that this example may create resources which cost money. Run `terraform des
2020
| Name | Version |
2121
|------|---------|
2222
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
23-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.89 |
23+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.12.0 |
2424
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.5 |
2525

2626
## Providers
2727

2828
| Name | Version |
2929
|------|---------|
30-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.89 |
30+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.12.0 |
3131
| <a name="provider_random"></a> [random](#provider\_random) | >= 3.5 |
3232

3333
## Modules
3434

3535
| Name | Source | Version |
3636
|------|--------|---------|
3737
| <a name="module_aurora"></a> [aurora](#module\_aurora) | ../../ | n/a |
38-
| <a name="module_kms"></a> [kms](#module\_kms) | terraform-aws-modules/kms/aws | ~> 2.0 |
39-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
38+
| <a name="module_kms"></a> [kms](#module\_kms) | terraform-aws-modules/kms/aws | ~> 4.0 |
39+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4040

4141
## Resources
4242

0 commit comments

Comments
 (0)