Skip to content

Commit 63a727d

Browse files
committed
Rename output 'instance_address' to 'instance_ip_address' in postgresql module. Fix #58.
1 parent add13c3 commit 63a727d

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [3.0.0] - 2019-12-16
11+
1012
### Removed
1113

1214
- Removed variable `peering_completed`. [#78]
@@ -15,6 +17,10 @@ project adheres to [Semantic Versioning](http://semver.org/).
1517

1618
- Added variable `module_depends_on`. [#78]
1719

20+
### Changed
21+
22+
- Renamed output `instance_address` to `instance_ip_address` in postgresql module. [#83]
23+
1824
## [2.0.0] - 2019-09-26
1925

2026
2.0.0 is a backward incompatible release. Review the
@@ -61,3 +67,4 @@ project adheres to [Semantic Versioning](http://semver.org/).
6167
[#53]: https://github.com/terraform-google-modules/terraform-google-sql-db/pull/53
6268
[#43]: https://github.com/terraform-google-modules/terraform-google-sql-db/pull/43
6369
[#78]: https://github.com/terraform-google-modules/terraform-google-sql-db/pull/78
70+
[#83]: https://github.com/terraform-google-modules/terraform-google-sql-db/pull/83

modules/postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
| Name | Description |
6262
|------|-------------|
6363
| generated\_user\_password | The auto generated default user password if not input password was provided |
64-
| instance\_address | The IPv4 addesses assigned for the master instance |
6564
| instance\_connection\_name | The connection name of the master instance to be used in connection strings |
6665
| instance\_first\_ip\_address | The first IPv4 address of the addresses assigned. |
66+
| instance\_ip\_address | The IPv4 addesses assigned for the master instance |
6767
| instance\_name | The instance name for the master instance |
6868
| instance\_self\_link | The URI of the master instance |
6969
| instance\_server\_ca\_cert | The CA certificate information used to connect to the SQL instance via SSL |

modules/postgresql/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ output "instance_name" {
2020
description = "The instance name for the master instance"
2121
}
2222

23-
output "instance_address" {
23+
output "instance_ip_address" {
2424
value = google_sql_database_instance.default.ip_address
2525
description = "The IPv4 addesses assigned for the master instance"
2626
}

0 commit comments

Comments
 (0)