File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 7
7
Use this URL for the source of the module. See the usage examples below for more details.
8
8
9
9
``` hcl
10
- github.com/pbs/terraform-aws-rds-module?ref=0.3.27
10
+ github.com/pbs/terraform-aws-rds-module?ref=x.y.z
11
11
```
12
12
13
13
### Alternative Installation Methods
@@ -28,7 +28,7 @@ Integrate this module like so:
28
28
29
29
``` hcl
30
30
module "rds" {
31
- source = "github.com/pbs/terraform-aws-rds-module?ref=0.3.27 "
31
+ source = "github.com/pbs/terraform-aws-rds-module?ref=x.y.z "
32
32
33
33
# Required Parameters
34
34
private_hosted_zone = "example.local"
@@ -47,7 +47,7 @@ module "rds" {
47
47
48
48
If this repo is added as a subtree, then the version of the module should be close to the version shown here:
49
49
50
- ` 0.3.27 `
50
+ ` x.y.z `
51
51
52
52
Note, however that subtrees can be altered as desired within repositories.
53
53
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ resource "aws_rds_cluster_instance" "writer" {
5
5
apply_immediately = var. apply_immediately
6
6
engine = var. engine
7
7
engine_version = local. engine_version
8
+
9
+ tags = local. tags
8
10
}
9
11
10
12
resource "aws_rds_cluster_instance" "reader" {
@@ -15,4 +17,6 @@ resource "aws_rds_cluster_instance" "reader" {
15
17
apply_immediately = var. apply_immediately
16
18
engine = var. engine
17
19
engine_version = local. engine_version
20
+
21
+ tags = local. tags
18
22
}
You can’t perform that action at this time.
0 commit comments