You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-36Lines changed: 8 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,12 +25,12 @@ module "cluster" {
25
25
26
26
name = "test-aurora-db-postgres96"
27
27
engine = "aurora-postgresql"
28
-
engine_version = "14.5"
29
-
instance_class = "db.r6g.large"
28
+
engine_version = "17.5"
29
+
instance_class = "db.r8g.large"
30
30
instances = {
31
31
one = {}
32
32
two = {
33
-
instance_class = "db.r6g.2xlarge"
33
+
instance_class = "db.r8g.2xlarge"
34
34
}
35
35
}
36
36
@@ -71,7 +71,7 @@ There are a couple different configuration methods that can be used to create in
71
71
- Reader(s): 2
72
72
73
73
```hcl
74
-
instance_class = "db.r6g.large"
74
+
instance_class = "db.r8g.large"
75
75
instances = {
76
76
one = {}
77
77
two = {}
@@ -90,7 +90,7 @@ There are a couple different configuration methods that can be used to create in
90
90
ℹ️ Autoscaling uses the instance class specified by `instance_class`.
91
91
92
92
```hcl
93
-
instance_class = "db.r6g.large"
93
+
instance_class = "db.r8g.large"
94
94
instances = {
95
95
one = {}
96
96
two = {}
@@ -111,7 +111,7 @@ There are a couple different configuration methods that can be used to create in
111
111
- At most 5 readers
112
112
113
113
```hcl
114
-
instance_class = "db.r6g.large"
114
+
instance_class = "db.r8g.large"
115
115
instances = {
116
116
one = {}
117
117
}
@@ -181,34 +181,6 @@ There are a couple different configuration methods that can be used to create in
181
181
autoscaling_max_capacity = 5
182
182
```
183
183
184
-
## DSQL Multi Region Peered Clusters
185
-
186
-
```hcl
187
-
module "dsql_cluster_1" {
188
-
source = "../../modules/dsql"
189
-
190
-
witness_region = "us-west-2"
191
-
create_cluster_peering = true
192
-
clusters = [module.dsql_cluster_2.arn]
193
-
194
-
tags = { Name = "dsql-1" }
195
-
}
196
-
197
-
module "dsql_cluster_2" {
198
-
source = "../../modules/dsql"
199
-
200
-
witness_region = "us-west-2"
201
-
create_cluster_peering = true
202
-
clusters = [module.dsql_cluster_1.arn]
203
-
204
-
tags = { Name = "dsql-2" }
205
-
206
-
providers = {
207
-
aws = aws.region2
208
-
}
209
-
}
210
-
```
211
-
212
184
## Conditional Creation
213
185
214
186
The following values are provided to toggle on/off creation of the associated resources as desired:
@@ -237,14 +209,14 @@ module "cluster" {
237
209
## Examples
238
210
239
211
-[Autoscaling](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/autoscaling): A PostgreSQL cluster with enhanced monitoring and autoscaling enabled
240
-
-[Limitless](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/limitless): A PostgreSQL Limitless cluster
212
+
-[DSQL](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/dsql): Multi region and single region DSQL clusters
241
213
-[Global Cluster](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/global-cluster): A PostgreSQL global cluster with clusters provisioned in two different region
214
+
-[Limitless](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/limitless): A PostgreSQL Limitless cluster
242
215
-[Multi-AZ](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/multi-az): A multi-AZ RDS cluster (not using Aurora engine)
243
216
-[MySQL](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/mysql): A simple MySQL cluster
244
217
-[PostgreSQL](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/postgresql): A simple PostgreSQL cluster
245
218
-[S3 Import](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/s3-import): A MySQL cluster created from a Percona Xtrabackup stored in S3
246
219
-[Serverless](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/serverless): Serverless V1 and V2 (PostgreSQL and MySQL)
247
-
-[DSQL](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tree/master/examples/dsql): Multi region and single region DSQL clusters
0 commit comments