open-nomad/command/operator_keygen.go

46 lines
1.0 KiB
Go

package command
import (
"crypto/rand"
"encoding/base64"
"fmt"
"strings"
)
// OperatorKeygenCommand is a Command implementation that generates an encryption
// key for use in `nomad agent`.
type OperatorKeygenCommand struct {
Meta
}
func (c *OperatorKeygenCommand) Synopsis() string {
return "Generates a new encryption key"
}
func (c *OperatorKeygenCommand) Help() string {
helpText := `
Usage: nomad operator keygen
Generates a new encryption key that can be used to configure the
agent to encrypt traffic. The output of this command is already
in the proper format that the agent expects.
`
return strings.TrimSpace(helpText)
}
func (c *OperatorKeygenCommand) Run(_ []string) int {
key := make([]byte, 16)
n, err := rand.Reader.Read(key)
if err != nil {
c.Ui.Error(fmt.Sprintf("Error reading random data: %s", err))
return 1
}
if n != 16 {
c.Ui.Error(fmt.Sprintf("Couldn't read enough entropy. Generate more entropy!"))
return 1
}
c.Ui.Output(base64.StdEncoding.EncodeToString(key))
return 0
}