File tree Expand file tree Collapse file tree 12 files changed +30
-30
lines changed Expand file tree Collapse file tree 12 files changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -31,22 +31,22 @@ An EC2 instance configuration has been provided for use in validating the exampl
31
31
| Name | Version |
32
32
| ------| ---------|
33
33
| <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 |
35
35
36
36
## Providers
37
37
38
38
| Name | Version |
39
39
| ------| ---------|
40
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5 .0 |
40
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 6 .0 |
41
41
42
42
## Modules
43
43
44
44
| Name | Source | Version |
45
45
| ------| --------| ---------|
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 |
47
47
| <a name =" module_rds_proxy " ></a > [ rds\_ proxy] ( #module\_ rds\_ proxy ) | ../../ | n/a |
48
48
| <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 |
50
50
51
51
## Resources
52
52
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ module "rds_proxy" {
69
69
70
70
module "vpc" {
71
71
source = " terraform-aws-modules/vpc/aws"
72
- version = " ~> 5 .0"
72
+ version = " ~> 6 .0"
73
73
74
74
name = local. name
75
75
cidr = local. vpc_cidr
@@ -84,7 +84,7 @@ module "vpc" {
84
84
85
85
module "rds" {
86
86
source = " terraform-aws-modules/rds-aurora/aws"
87
- version = " ~> 8 .0"
87
+ version = " ~> 9 .0"
88
88
89
89
name = local. name
90
90
engine = " aurora-mysql"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 5 .0"
7
+ version = " >= 6 .0"
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -31,25 +31,25 @@ An EC2 instance configuration has been provided for use in validating the exampl
31
31
| Name | Version |
32
32
| ------| ---------|
33
33
| <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 |
35
35
| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 2.0 |
36
36
37
37
## Providers
38
38
39
39
| Name | Version |
40
40
| ------| ---------|
41
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5 .0 |
41
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 6 .0 |
42
42
| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 2.0 |
43
43
44
44
## Modules
45
45
46
46
| Name | Source | Version |
47
47
| ------| --------| ---------|
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 |
49
49
| <a name =" module_rds_proxy " ></a > [ rds\_ proxy] ( #module\_ rds\_ proxy ) | ../../ | n/a |
50
50
| <a name =" module_rds_proxy_sg " ></a > [ rds\_ proxy\_ sg] ( #module\_ rds\_ proxy\_ sg ) | terraform-aws-modules/security-group/aws | ~ > 5.0 |
51
51
| <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 |
53
53
54
54
## Resources
55
55
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ module "rds_proxy" {
61
61
62
62
# Target RDS instance
63
63
target_db_instance = true
64
- db_instance_identifier = module. rds . db_instance_id
64
+ db_instance_identifier = module. rds . db_instance_identifier
65
65
66
66
tags = local. tags
67
67
}
@@ -82,7 +82,7 @@ resource "random_password" "password" {
82
82
83
83
module "vpc" {
84
84
source = " terraform-aws-modules/vpc/aws"
85
- version = " ~> 5 .0"
85
+ version = " ~> 6 .0"
86
86
87
87
name = local. name
88
88
cidr = local. vpc_cidr
@@ -97,7 +97,7 @@ module "vpc" {
97
97
98
98
module "rds" {
99
99
source = " terraform-aws-modules/rds/aws"
100
- version = " ~> 5 .0"
100
+ version = " ~> 6 .0"
101
101
102
102
username = local. db_username
103
103
password = local. db_password
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 5 .0"
7
+ version = " >= 6 .0"
8
8
}
9
9
random = {
10
10
source = " hashicorp/random"
Original file line number Diff line number Diff line change @@ -31,22 +31,22 @@ An EC2 instance configuration has been provided for use in validating the exampl
31
31
| Name | Version |
32
32
| ------| ---------|
33
33
| <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 |
35
35
36
36
## Providers
37
37
38
38
| Name | Version |
39
39
| ------| ---------|
40
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5 .0 |
40
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 6 .0 |
41
41
42
42
## Modules
43
43
44
44
| Name | Source | Version |
45
45
| ------| --------| ---------|
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 |
47
47
| <a name =" module_rds_proxy " ></a > [ rds\_ proxy] ( #module\_ rds\_ proxy ) | ../../ | n/a |
48
48
| <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 |
50
50
51
51
## Resources
52
52
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ module "rds_proxy" {
69
69
70
70
module "vpc" {
71
71
source = " terraform-aws-modules/vpc/aws"
72
- version = " ~> 5 .0"
72
+ version = " ~> 6 .0"
73
73
74
74
name = local. name
75
75
cidr = local. vpc_cidr
@@ -84,7 +84,7 @@ module "vpc" {
84
84
85
85
module "rds" {
86
86
source = " terraform-aws-modules/rds-aurora/aws"
87
- version = " ~> 8 .0"
87
+ version = " ~> 9 .0"
88
88
89
89
name = local. name
90
90
engine = " aurora-postgresql"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 5 .0"
7
+ version = " >= 6 .0"
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -31,25 +31,25 @@ An EC2 instance configuration has been provided for use in validating the exampl
31
31
| Name | Version |
32
32
| ------| ---------|
33
33
| <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 |
35
35
| <a name =" requirement_random " ></a > [ random] ( #requirement\_ random ) | >= 2.0 |
36
36
37
37
## Providers
38
38
39
39
| Name | Version |
40
40
| ------| ---------|
41
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 5 .0 |
41
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 6 .0 |
42
42
| <a name =" provider_random " ></a > [ random] ( #provider\_ random ) | >= 2.0 |
43
43
44
44
## Modules
45
45
46
46
| Name | Source | Version |
47
47
| ------| --------| ---------|
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 |
49
49
| <a name =" module_rds_proxy " ></a > [ rds\_ proxy] ( #module\_ rds\_ proxy ) | ../../ | n/a |
50
50
| <a name =" module_rds_proxy_sg " ></a > [ rds\_ proxy\_ sg] ( #module\_ rds\_ proxy\_ sg ) | terraform-aws-modules/security-group/aws | ~ > 5.0 |
51
51
| <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 |
53
53
54
54
## Resources
55
55
You can’t perform that action at this time.
0 commit comments