Skip to content

Commit 7b35491

Browse files
shemauSteve Peggs
andauthored
fix: update hostname and port output descriptions (#54)
Co-authored-by: Steve Peggs <[email protected]>
1 parent b0ee307 commit 7b35491

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

examples/basic/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ output "adminuser" {
1717
}
1818

1919
output "hostname" {
20-
description = "Database hostname"
20+
description = "Database connection hostname"
2121
value = module.mysql_db.hostname
2222
}
2323

2424
output "port" {
25-
description = "Database port"
25+
description = "Database connection port"
2626
value = module.mysql_db.port
2727
}
2828

2929
output "certificate_base64" {
30-
description = "Database port"
30+
description = "Database connection certificate"
3131
value = module.mysql_db.certificate_base64
3232
sensitive = true
3333
}

modules/fscloud/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ No resources.
5959
| <a name="output_certificate_base64"></a> [certificate\_base64](#output\_certificate\_base64) | Database connection certificate |
6060
| <a name="output_crn"></a> [crn](#output\_crn) | MySQL instance crn |
6161
| <a name="output_guid"></a> [guid](#output\_guid) | MySQL instance guid |
62-
| <a name="output_hostname"></a> [hostname](#output\_hostname) | MySQL instance hostname |
62+
| <a name="output_hostname"></a> [hostname](#output\_hostname) | Database connection hostname |
6363
| <a name="output_id"></a> [id](#output\_id) | MySQL instance id |
64-
| <a name="output_port"></a> [port](#output\_port) | MySQL instance port |
64+
| <a name="output_port"></a> [port](#output\_port) | Database connection port |
6565
| <a name="output_version"></a> [version](#output\_version) | MySQL instance version |
6666
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

modules/fscloud/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ output "adminuser" {
2828
}
2929

3030
output "hostname" {
31-
description = "MySQL instance hostname"
31+
description = "Database connection hostname"
3232
value = module.mysql_db.hostname
3333
}
3434

3535
output "port" {
36-
description = "MySQL instance port"
36+
description = "Database connection port"
3737
value = module.mysql_db.port
3838
}
3939

0 commit comments

Comments
 (0)