mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package command
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/hashicorp/vault/meta"
 | 
						|
)
 | 
						|
 | 
						|
// RotateCommand is a Command that rotates the encryption key being used
 | 
						|
type RotateCommand struct {
 | 
						|
	meta.Meta
 | 
						|
}
 | 
						|
 | 
						|
func (c *RotateCommand) Run(args []string) int {
 | 
						|
	flags := c.Meta.FlagSet("rotate", meta.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:
 | 
						|
` + meta.GeneralOptionsUsage()
 | 
						|
	return strings.TrimSpace(helpText)
 | 
						|
}
 |