Description
TL;DR
$ hcloud version
hcloud 1.42.0
$ hcloud server reset-password --help
No option for YAML output :-(
Do I find the password in the server's description ... no:
$ hcloud server describe -o yaml SERVER_ID | grep -i pass
I have to resort to parsing the output, e.g.
$ hcloud server reset-password SERVER_ID | tail -n 1 | awk '{ print $NF }'
This is too fragile.
If the output format ever changes, code breaks.
Expected behavior
$ hcloud server reset-password --output yaml SERVER_ID
Thx :-)