Clarify CA commands' help text

This commit is contained in:
Kyle Havlovitz 2018-05-25 10:27:04 -07:00 committed by Mitchell Hashimoto
parent 6ca7543ea6
commit 61d7e38148
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
3 changed files with 7 additions and 6 deletions

View File

@ -23,11 +23,12 @@ func (c *cmd) Help() string {
return flags.Usage(help, nil)
}
const synopsis = "Interact with the Consul Connect CA"
const synopsis = "Interact with the Consul Connect Certificate Authority (CA)"
const help = `
Usage: consul connect ca <subcommand> [options] [args]
Usage: consul connect ca <subcommand> [options] [args]
This command has subcommands for interacting with Consul Connect's CA.
This command has subcommands for interacting with Consul Connect's
Certificate Authority (CA).
Here are some simple examples, and more detailed examples are available
in the subcommands or the documentation.

View File

@ -73,9 +73,9 @@ func (c *cmd) Help() string {
return c.help
}
const synopsis = "Display the current Connect CA configuration"
const synopsis = "Display the current Connect Certificate Authority (CA) configuration"
const help = `
Usage: consul connect ca get-config [options]
Displays the current Connect CA configuration.
Displays the current Connect Certificate Authority (CA) configuration.
`

View File

@ -92,5 +92,5 @@ const synopsis = "Modify the current Connect CA configuration"
const help = `
Usage: consul connect ca set-config [options]
Modifies the current Connect CA configuration.
Modifies the current Connect Certificate Authority (CA) configuration.
`