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: docs/UPGRADE-10.0.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ If you find a bug, please open an issue with supporting configuration to reprodu
8
8
- Terraform `v1.11` is now minimum supported version to support write-only (`wo_*`) attributes.
9
9
- AWS provider `v6.18` is now minimum supported version
10
10
- The underlying `aws_security_group_rule` resources has been replaced with `aws_vpc_security_group_ingress_rule` and `aws_vpc_security_group_egress_rule` to allow for more flexibility in defining security group rules.
11
-
-`master_password` is no longer supported and only the write-only equivalent is supported (`master_password_wo` and `master_password_wo_version`).
11
+
-`master_password` is no longer supported and only the write-only equivalent is supported (`master_password_wo` and `master_password_wo_version`) ([#513](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/pull/513))
Copy file name to clipboardExpand all lines: modules/dsql/README.md
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# DSQL Cluster
1
+
# AWS RDS Aurora DSQL Terraform module
2
2
3
-
Terraform sub-module which creates DSQL cluster and peering resources.
3
+
Terraform sub-module which creates DSQL resources.
4
4
5
5
## Usage
6
6
@@ -10,25 +10,31 @@ See [DSQL](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/tre
10
10
module "dsql_cluster_1" {
11
11
source = "../../modules/dsql"
12
12
13
-
witness_region = "us-west-2"
13
+
name = "dsql-1"
14
+
15
+
witness_region = "us-east-2"
14
16
create_cluster_peering = true
15
17
clusters = [module.dsql_cluster_2.arn]
16
18
17
-
tags = { Name = "dsql-1" }
19
+
tags = {
20
+
Environment = "production"
21
+
}
18
22
}
19
23
20
24
module "dsql_cluster_2" {
21
25
source = "../../modules/dsql"
22
26
27
+
region = "us-east-2"
28
+
29
+
name = "dsql-2"
30
+
23
31
witness_region = "us-west-2"
24
32
create_cluster_peering = true
25
33
clusters = [module.dsql_cluster_1.arn]
26
34
27
-
tags = { Name = "dsql-2" }
28
-
29
-
providers = {
30
-
aws = aws.region2
31
-
}
35
+
tags = {
36
+
Environment = "production"
37
+
}
32
38
}
33
39
```
34
40
@@ -66,9 +72,10 @@ No modules.
66
72
| <aname="input_create_cluster_peering"></a> [create\_cluster\_peering](#input\_create\_cluster\_peering)| Whether to create cluster peering |`bool`|`false`| no |
67
73
| <aname="input_deletion_protection_enabled"></a> [deletion\_protection\_enabled](#input\_deletion\_protection\_enabled)| Whether deletion protection is enabled in this cluster |`bool`|`null`| no |
68
74
| <aname="input_kms_encryption_key"></a> [kms\_encryption\_key](#input\_kms\_encryption\_key)| The ARN of the AWS KMS key that encrypts data in the DSQL Cluster, or `AWS_OWNED_KMS_KEY`|`string`|`null`| no |
75
+
| <aname="input_name"></a> [name](#input\_name)| Name used across resources created |`string`|`""`| no |
69
76
| <aname="input_region"></a> [region](#input\_region)| Region where the resource(s) will be managed. Defaults to the Region set in the provider configuration |`string`|`null`| no |
70
-
| <aname="input_tags"></a> [tags](#input\_tags)| A map of tags to be associated with the AWS DSQL Cluster resource|`map(string)`|`{}`| no |
71
-
| <aname="input_timeouts"></a> [timeouts](#input\_timeouts)|Create timeout configuration for the cluster |`any`|`{}`| no |
77
+
| <aname="input_tags"></a> [tags](#input\_tags)| A map of tags to add to all resources|`map(string)`|`{}`| no |
78
+
| <aname="input_timeouts"></a> [timeouts](#input\_timeouts)|Timeout configuration for the cluster |<pre>object({<br/> create = optional(string)<br/> })</pre> |`null`| no |
72
79
| <aname="input_witness_region"></a> [witness\_region](#input\_witness\_region)| Witness region for the multi-region clusters. Setting this makes this cluster a multi-region cluster. Changing it recreates the cluster |`string`|`null`| no |
0 commit comments