Skip to content

Commit 5f83f0d

Browse files
committed
fix: examples
1 parent 37ac3c9 commit 5f83f0d

File tree

12 files changed

+30
-30
lines changed

12 files changed

+30
-30
lines changed

examples/mysql-iam-cluster/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ An EC2 instance configuration has been provided for use in validating the exampl
3131
| Name | Version |
3232
|------|---------|
3333
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
34-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
34+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3535

3636
## Providers
3737

3838
| Name | Version |
3939
|------|---------|
40-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
40+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
4141

4242
## Modules
4343

4444
| Name | Source | Version |
4545
|------|--------|---------|
46-
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds-aurora/aws | ~> 8.0 |
46+
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds-aurora/aws | ~> 9.0 |
4747
| <a name="module_rds_proxy"></a> [rds\_proxy](#module\_rds\_proxy) | ../../ | n/a |
4848
| <a name="module_rds_proxy_sg"></a> [rds\_proxy\_sg](#module\_rds\_proxy\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
49-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
49+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
5050

5151
## Resources
5252

examples/mysql-iam-cluster/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module "rds_proxy" {
6969

7070
module "vpc" {
7171
source = "terraform-aws-modules/vpc/aws"
72-
version = "~> 5.0"
72+
version = "~> 6.0"
7373

7474
name = local.name
7575
cidr = local.vpc_cidr
@@ -84,7 +84,7 @@ module "vpc" {
8484

8585
module "rds" {
8686
source = "terraform-aws-modules/rds-aurora/aws"
87-
version = "~> 8.0"
87+
version = "~> 9.0"
8888

8989
name = local.name
9090
engine = "aurora-mysql"

examples/mysql-iam-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.0"
7+
version = ">= 6.0"
88
}
99
}
1010
}

examples/mysql-iam-instance/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ An EC2 instance configuration has been provided for use in validating the exampl
3131
| Name | Version |
3232
|------|---------|
3333
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
34-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
34+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3535
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
3636

3737
## Providers
3838

3939
| Name | Version |
4040
|------|---------|
41-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
41+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
4242
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
4343

4444
## Modules
4545

4646
| Name | Source | Version |
4747
|------|--------|---------|
48-
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds/aws | ~> 5.0 |
48+
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds/aws | ~> 6.0 |
4949
| <a name="module_rds_proxy"></a> [rds\_proxy](#module\_rds\_proxy) | ../../ | n/a |
5050
| <a name="module_rds_proxy_sg"></a> [rds\_proxy\_sg](#module\_rds\_proxy\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
5151
| <a name="module_rds_sg"></a> [rds\_sg](#module\_rds\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
52-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
52+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
5353

5454
## Resources
5555

examples/mysql-iam-instance/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module "rds_proxy" {
6161

6262
# Target RDS instance
6363
target_db_instance = true
64-
db_instance_identifier = module.rds.db_instance_id
64+
db_instance_identifier = module.rds.db_instance_identifier
6565

6666
tags = local.tags
6767
}
@@ -82,7 +82,7 @@ resource "random_password" "password" {
8282

8383
module "vpc" {
8484
source = "terraform-aws-modules/vpc/aws"
85-
version = "~> 5.0"
85+
version = "~> 6.0"
8686

8787
name = local.name
8888
cidr = local.vpc_cidr
@@ -97,7 +97,7 @@ module "vpc" {
9797

9898
module "rds" {
9999
source = "terraform-aws-modules/rds/aws"
100-
version = "~> 5.0"
100+
version = "~> 6.0"
101101

102102
username = local.db_username
103103
password = local.db_password

examples/mysql-iam-instance/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.0"
7+
version = ">= 6.0"
88
}
99
random = {
1010
source = "hashicorp/random"

examples/postgresql-iam-cluster/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ An EC2 instance configuration has been provided for use in validating the exampl
3131
| Name | Version |
3232
|------|---------|
3333
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
34-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
34+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3535

3636
## Providers
3737

3838
| Name | Version |
3939
|------|---------|
40-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
40+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
4141

4242
## Modules
4343

4444
| Name | Source | Version |
4545
|------|--------|---------|
46-
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds-aurora/aws | ~> 8.0 |
46+
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds-aurora/aws | ~> 9.0 |
4747
| <a name="module_rds_proxy"></a> [rds\_proxy](#module\_rds\_proxy) | ../../ | n/a |
4848
| <a name="module_rds_proxy_sg"></a> [rds\_proxy\_sg](#module\_rds\_proxy\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
49-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
49+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
5050

5151
## Resources
5252

examples/postgresql-iam-cluster/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module "rds_proxy" {
6969

7070
module "vpc" {
7171
source = "terraform-aws-modules/vpc/aws"
72-
version = "~> 5.0"
72+
version = "~> 6.0"
7373

7474
name = local.name
7575
cidr = local.vpc_cidr
@@ -84,7 +84,7 @@ module "vpc" {
8484

8585
module "rds" {
8686
source = "terraform-aws-modules/rds-aurora/aws"
87-
version = "~> 8.0"
87+
version = "~> 9.0"
8888

8989
name = local.name
9090
engine = "aurora-postgresql"

examples/postgresql-iam-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.0"
7+
version = ">= 6.0"
88
}
99
}
1010
}

examples/postgresql-iam-instance/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ An EC2 instance configuration has been provided for use in validating the exampl
3131
| Name | Version |
3232
|------|---------|
3333
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
34-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.0 |
34+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3535
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 2.0 |
3636

3737
## Providers
3838

3939
| Name | Version |
4040
|------|---------|
41-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.0 |
41+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
4242
| <a name="provider_random"></a> [random](#provider\_random) | >= 2.0 |
4343

4444
## Modules
4545

4646
| Name | Source | Version |
4747
|------|--------|---------|
48-
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds/aws | ~> 5.0 |
48+
| <a name="module_rds"></a> [rds](#module\_rds) | terraform-aws-modules/rds/aws | ~> 6.0 |
4949
| <a name="module_rds_proxy"></a> [rds\_proxy](#module\_rds\_proxy) | ../../ | n/a |
5050
| <a name="module_rds_proxy_sg"></a> [rds\_proxy\_sg](#module\_rds\_proxy\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
5151
| <a name="module_rds_sg"></a> [rds\_sg](#module\_rds\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
52-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
52+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
5353

5454
## Resources
5555

0 commit comments

Comments
 (0)