Skip to content

Commit 6eae1dd

Browse files
committed
Fix description for 'instance_ip_address' output. Fix linter error.
1 parent ad88cd3 commit 6eae1dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

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

1616
### Added
1717

18-
- The `public_ip_address`, `private_ip_address`, and `instance_address` outputs to the `mysql` submodule, the `postgresql`
19-
submodule, and the `safer_mysql` submodule. [#76]
18+
- The `public_ip_address`, `private_ip_address`, and `instance_address` outputs to the `mysql` submodule, the `postgresql`
19+
submodule, and the `safer_mysql` submodule. [#76]
2020
- Added variable `module_depends_on`. [#78]
2121

2222
### Changed

modules/postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
| generated\_user\_password | The auto generated default user password if not input password was provided |
6464
| instance\_connection\_name | The connection name of the master instance to be used in connection strings |
6565
| instance\_first\_ip\_address | The first IPv4 address of the addresses assigned. |
66-
| instance\_ip\_address | The IPv4 addresses assigned for the master instance |
66+
| instance\_ip\_address | The IPv4 address 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
@@ -32,7 +32,7 @@ output "private_ip_address" {
3232

3333
output "instance_ip_address" {
3434
value = google_sql_database_instance.default.ip_address
35-
description = "The IPv4 addresses assigned for the master instance"
35+
description = "The IPv4 address assigned for the master instance"
3636
}
3737

3838
output "instance_first_ip_address" {

0 commit comments

Comments
 (0)