()
| 25 | } |
| 26 | |
| 27 | func (c *OperatorKeyStatusCommand) Help() string { |
| 28 | helpText := ` |
| 29 | Usage: vault operator key-status [options] |
| 30 | |
| 31 | Provides information about the active encryption key. Specifically, |
| 32 | the current key term and the key installation time. |
| 33 | |
| 34 | ` + c.Flags().Help() |
| 35 | |
| 36 | return strings.TrimSpace(helpText) |
| 37 | } |
| 38 | |
| 39 | func (c *OperatorKeyStatusCommand) Flags() *FlagSets { |
| 40 | return c.flagSet(FlagSetHTTP | FlagSetOutputFormat) |