Files
ubicloud/cli-commands/pg.rb
Jeremy Evans 9fc326c965 Minor CLI help improvements
* Spaces around `|` between name and id.

* `Get program help` -> `Get command help`

* `private-subnet-id` -> `ps-id`
2025-03-13 09:20:15 -07:00

13 lines
367 B
Ruby

# frozen_string_literal: true
UbiCli.base("pg") do
banner "ubi pg command [...]"
post_options("ubi pg (location/pg-name | pg-id) [post-options] post-command [...]", key: :pg_psql) do
on("-d", "--dbname=name", "override database name")
on("-U", "--username=name", "override username")
end
end
Unreloader.record_dependency(__FILE__, "cli-commands/pg")