// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package command import ( "fmt" "strings" "github.com/posener/complete" ) // OperatorRootKeyringListCommand is a Command // implementation that lists the variables encryption keys. type OperatorRootKeyringListCommand struct { Meta } func (c *OperatorRootKeyringListCommand) Help() string { helpText := ` Usage: nomad operator root keyring list [options] List the currently installed keys. This list returns key metadata and not sensitive key material. If ACLs are enabled, this command requires a management token. General Options: ` + generalOptionsUsage(usageOptsDefault|usageOptsNoNamespace) + ` Keyring Options: -verbose Show full information. ` return strings.TrimSpace(helpText) } func (c *OperatorRootKeyringListCommand) Synopsis() string { return "Lists the root encryption keys" } func (c *OperatorRootKeyringListCommand) AutocompleteFlags() complete.Flags { return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient), complete.Flags{ "-verbose": complete.PredictNothing, }) } func (c *OperatorRootKeyringListCommand) AutocompleteArgs() complete.Predictor { return complete.PredictNothing } func (c *OperatorRootKeyringListCommand) Name() string { return "root keyring list" } func (c *OperatorRootKeyringListCommand) Run(args []string) int { var verbose bool flags := c.Meta.FlagSet("root keyring list", FlagSetClient) flags.Usage = func() { c.Ui.Output(c.Help()) } flags.BoolVar(&verbose, "verbose", false, "") if err := flags.Parse(args); err != nil { return 1 } args = flags.Args() if len(args) != 0 { c.Ui.Error("This command requires no arguments.") c.Ui.Error(commandErrorText(c)) return 1 } client, err := c.Meta.Client() if err != nil { c.Ui.Error(fmt.Sprintf("Error creating nomad cli client: %s", err)) return 1 } resp, _, err := client.Keyring().List(nil) if err != nil { c.Ui.Error(fmt.Sprintf("error: %s", err)) return 1 } c.Ui.Output(renderVariablesKeysResponse(resp, verbose)) return 0 }