From 78aa4876eb4df2056df2edca4e4f726daab1635d Mon Sep 17 00:00:00 2001 From: Malhar Vora Date: Sun, 22 Apr 2018 23:12:46 +0530 Subject: [PATCH] Corrects description for mode option in ssh command (#4420) Fixes #4375 --- command/ssh.go | 2 +- website/source/docs/commands/ssh.html.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/command/ssh.go b/command/ssh.go index 0d1ad0a2bf..06a759ba55 100644 --- a/command/ssh.go +++ b/command/ssh.go @@ -94,7 +94,7 @@ func (c *SSHCommand) Flags() *FlagSets { Default: "", EnvVar: "", Completion: complete.PredictSet("ca", "dynamic", "otp"), - Usage: "Name of the role to use to generate the key.", + Usage: "Name of the authentication mode (ca, dynamic, otp).", }) f.StringVar(&StringVar{ diff --git a/website/source/docs/commands/ssh.html.md b/website/source/docs/commands/ssh.html.md index 609c69f9a1..d97e0c3b61 100644 --- a/website/source/docs/commands/ssh.html.md +++ b/website/source/docs/commands/ssh.html.md @@ -65,7 +65,7 @@ flags](/docs/commands/index.html) included on all commands. ### SSH Options -- `-mode` `(string: "")` - Name of the role to use to generate the key. +- `-mode` `(string: "")` - Name of the authentication mode (ca, dynamic, otp)." - `-mount-point` `(string: "ssh/")` - Mount point to the SSH secrets engine.