mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 12:26:34 +02:00
Fix improperly formatted help output strings (#6414)
This commit is contained in:
parent
dcfdb3d5d5
commit
8de190f31d
@ -114,14 +114,14 @@ func (c *AuthEnableCommand) Flags() *FlagSets {
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACRequestKeys,
|
||||
Target: &c.flagAuditNonHMACRequestKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the request data object.",
|
||||
})
|
||||
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACResponseKeys,
|
||||
Target: &c.flagAuditNonHMACResponseKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the response data object.",
|
||||
})
|
||||
|
||||
|
||||
@ -58,14 +58,14 @@ func (c *AuthTuneCommand) Flags() *FlagSets {
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACRequestKeys,
|
||||
Target: &c.flagAuditNonHMACRequestKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the request data object.",
|
||||
})
|
||||
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACResponseKeys,
|
||||
Target: &c.flagAuditNonHMACResponseKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the response data object.",
|
||||
})
|
||||
|
||||
@ -83,14 +83,14 @@ func (c *AuthTuneCommand) Flags() *FlagSets {
|
||||
f.StringVar(&StringVar{
|
||||
Name: flagNameDescription,
|
||||
Target: &c.flagDescription,
|
||||
Usage: "Human-friendly description of the this auth method. This overrides" +
|
||||
Usage: "Human-friendly description of the this auth method. This overrides " +
|
||||
"the current stored value, if any.",
|
||||
})
|
||||
|
||||
f.StringVar(&StringVar{
|
||||
Name: flagNameListingVisibility,
|
||||
Target: &c.flagListingVisibility,
|
||||
Usage: "Determines the visibility of the mount in the UI-specific listing" +
|
||||
Usage: "Determines the visibility of the mount in the UI-specific listing " +
|
||||
"endpoint.",
|
||||
})
|
||||
|
||||
|
||||
@ -121,14 +121,14 @@ func (c *SecretsEnableCommand) Flags() *FlagSets {
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACRequestKeys,
|
||||
Target: &c.flagAuditNonHMACRequestKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the request data object.",
|
||||
})
|
||||
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACResponseKeys,
|
||||
Target: &c.flagAuditNonHMACResponseKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the response data object.",
|
||||
})
|
||||
|
||||
|
||||
@ -57,14 +57,14 @@ func (c *SecretsTuneCommand) Flags() *FlagSets {
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACRequestKeys,
|
||||
Target: &c.flagAuditNonHMACRequestKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the request data object.",
|
||||
})
|
||||
|
||||
f.StringSliceVar(&StringSliceVar{
|
||||
Name: flagNameAuditNonHMACResponseKeys,
|
||||
Target: &c.flagAuditNonHMACResponseKeys,
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
||||
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit " +
|
||||
"devices in the response data object.",
|
||||
})
|
||||
|
||||
@ -82,14 +82,14 @@ func (c *SecretsTuneCommand) Flags() *FlagSets {
|
||||
f.StringVar(&StringVar{
|
||||
Name: flagNameDescription,
|
||||
Target: &c.flagDescription,
|
||||
Usage: "Human-friendly description of this secret engine. This overrides the" +
|
||||
Usage: "Human-friendly description of this secret engine. This overrides the " +
|
||||
"current stored value, if any.",
|
||||
})
|
||||
|
||||
f.StringVar(&StringVar{
|
||||
Name: flagNameListingVisibility,
|
||||
Target: &c.flagListingVisibility,
|
||||
Usage: "Determines the visibility of the mount in the UI-specific listing" +
|
||||
Usage: "Determines the visibility of the mount in the UI-specific listing " +
|
||||
"endpoint.",
|
||||
})
|
||||
|
||||
|
||||
@ -85,7 +85,7 @@ func (c *TokenCreateCommand) Flags() *FlagSets {
|
||||
Target: &c.flagTTL,
|
||||
Completion: complete.PredictAnything,
|
||||
Usage: "Initial TTL to associate with the token. Token renewals may be " +
|
||||
"able to extend beyond this value, depending on the configured maximum" +
|
||||
"able to extend beyond this value, depending on the configured maximum " +
|
||||
"TTLs. This is specified as a numeric string with suffix like \"30s\" " +
|
||||
"or \"5m\".",
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user