From 61d7e3814896e9c4e4ab0ac5d39d55a2bc110900 Mon Sep 17 00:00:00 2001 From: Kyle Havlovitz Date: Fri, 25 May 2018 10:27:04 -0700 Subject: [PATCH] Clarify CA commands' help text --- command/connect/ca/ca.go | 7 ++++--- command/connect/ca/get/connect_ca_get.go | 4 ++-- command/connect/ca/set/connect_ca_set.go | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/command/connect/ca/ca.go b/command/connect/ca/ca.go index 918f4a2541..9e9df7ad6b 100644 --- a/command/connect/ca/ca.go +++ b/command/connect/ca/ca.go @@ -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 [options] [args] +Usage: consul connect ca [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. diff --git a/command/connect/ca/get/connect_ca_get.go b/command/connect/ca/get/connect_ca_get.go index c255bbcb83..26bcb58240 100644 --- a/command/connect/ca/get/connect_ca_get.go +++ b/command/connect/ca/get/connect_ca_get.go @@ -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. ` diff --git a/command/connect/ca/set/connect_ca_set.go b/command/connect/ca/set/connect_ca_set.go index e98d5923ea..696b894c01 100644 --- a/command/connect/ca/set/connect_ca_set.go +++ b/command/connect/ca/set/connect_ca_set.go @@ -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. `