File tree 4 files changed +14
-1
lines changed
4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Tamr Terraform Template Repo
2
2
3
+ ## v0.3.1 - Sep 10th 2020
4
+ * Adds outputs, ` rds_username ` and ` rds_dbname `
5
+
3
6
## v0.3.0 - Sep 10th 2020
4
7
* Adds creation of aws_db_subnet_group resource
5
8
* Adds variable rds_subnet_ids to specify subnet IDs in subnet group
Original file line number Diff line number Diff line change @@ -80,10 +80,12 @@ This terraform module will create:
80
80
81
81
| Name | Description |
82
82
| ------| -------------|
83
+ | rds\_ dbname | n/a |
83
84
| rds\_ hostname | n/a |
84
85
| rds\_ postgres\_ id | ID of the of the RDS instance |
85
86
| rds\_ postgres\_ pg\_ id | ID of the RDS postgres parameter group |
86
87
| rds\_ sg\_ id | ID of the security group attached to the rds instance |
88
+ | rds\_ username | n/a |
87
89
88
90
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
89
91
Original file line number Diff line number Diff line change 1
- 0.3.0
1
+ 0.3.1
Original file line number Diff line number Diff line change @@ -16,3 +16,11 @@ output "rds_sg_id" {
16
16
output "rds_hostname" {
17
17
value = aws_db_instance. rds_postgres . address
18
18
}
19
+
20
+ output "rds_username" {
21
+ value = aws_db_instance. rds_postgres . username
22
+ }
23
+
24
+ output "rds_dbname" {
25
+ value = aws_db_instance. rds_postgres . name
26
+ }
You can’t perform that action at this time.
0 commit comments