2015-05-28 17:16:33 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RotateCommand is a Command that rotates the encryption key being used
|
|
|
|
type RotateCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RotateCommand) Run(args []string) int {
|
|
|
|
flags := c.Meta.FlagSet("rotate", FlagSetDefault)
|
|
|
|
flags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := flags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := c.Client()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Error initializing client: %s", err))
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rotate the key
|
|
|
|
err = client.Sys().Rotate()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Error with key rotation: %s", err))
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
// Print the key status
|
|
|
|
status, err := client.Sys().KeyStatus()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Error reading audits: %s", err))
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Output(fmt.Sprintf("Key Term: %d", status.Term))
|
|
|
|
c.Ui.Output(fmt.Sprintf("Installation Time: %v", status.InstallTime))
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RotateCommand) Synopsis() string {
|
|
|
|
return "Rotates the backend encryption key used to persist data"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *RotateCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: vault rotate [options]
|
|
|
|
|
|
|
|
Rotates the backend encryption key which is used to secure data
|
|
|
|
written to the storage backend. This is done by installing a new key
|
|
|
|
which encrypts new data, while old keys are still used to decrypt
|
|
|
|
secrets written previously. This is an online operation and is not
|
|
|
|
disruptive.
|
|
|
|
|
|
|
|
General Options:
|
|
|
|
|
2015-06-30 19:01:23 +00:00
|
|
|
` + generalOptionsUsage()
|
2015-05-28 17:16:33 +00:00
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|