File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11# Tamr Terraform Template Repo
22
3+ ## v0.3.1 - Sep 10th 2020
4+ * Adds outputs, ` rds_username ` and ` rds_dbname `
5+
36## v0.3.0 - Sep 10th 2020
47* Adds creation of aws_db_subnet_group resource
58 * 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:
8080
8181| Name | Description |
8282| ------| -------------|
83+ | rds\_ dbname | n/a |
8384| rds\_ hostname | n/a |
8485| rds\_ postgres\_ id | ID of the of the RDS instance |
8586| rds\_ postgres\_ pg\_ id | ID of the RDS postgres parameter group |
8687| rds\_ sg\_ id | ID of the security group attached to the rds instance |
88+ | rds\_ username | n/a |
8789
8890<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
8991
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" {
1616output "rds_hostname" {
1717 value = aws_db_instance. rds_postgres . address
1818}
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