Skip to content

Commit

Permalink
Clarify flags now accept file references or values
Browse files Browse the repository at this point in the history
[#148311509]
  • Loading branch information
danjahner committed Jul 26, 2017
1 parent 63fbe57 commit f646174
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions commands/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ type SetCommand struct {
NoOverwrite bool `short:"O" long:"no-overwrite" description:"Credential is not modified if stored value already exists"`
Value string `short:"v" long:"value" description:"[Value, JSON] Sets the value for the credential"`
CaName string `short:"m" long:"ca-name" description:"[Certificate] Sets the root CA to a stored CA credential"`
Root string `short:"r" long:"root" description:"[Certificate] Sets the root CA from file"`
Certificate string `short:"c" long:"certificate" description:"[Certificate] Sets the certificate from file"`
Private string `short:"p" long:"private" description:"[Certificate, SSH, RSA] Sets the private key from file"`
Public string `short:"u" long:"public" description:"[SSH, RSA] Sets the public key from file"`
Root string `short:"r" long:"root" description:"[Certificate] Sets the root CA from file or value"`
Certificate string `short:"c" long:"certificate" description:"[Certificate] Sets the certificate from file or value"`
Private string `short:"p" long:"private" description:"[Certificate, SSH, RSA] Sets the private key from file or value"`
Public string `short:"u" long:"public" description:"[SSH, RSA] Sets the public key from file or value"`
Username string `short:"z" long:"username" description:"[User] Sets the username value of the credential"`
Password string `short:"w" long:"password" description:"[Password, User] Sets the password value of the credential"`
OutputJson bool ` long:"output-json" description:"Return response in JSON format"`
Expand Down

0 comments on commit f646174

Please sign in to comment.