open-vault/command/secrets_list.go

183 lines
4.0 KiB
Go
Raw Normal View History

2015-03-16 04:28:31 +00:00
package command
import (
"fmt"
"sort"
"strconv"
2015-03-16 04:28:31 +00:00
"strings"
2015-04-02 00:01:10 +00:00
2017-09-05 04:02:45 +00:00
"github.com/hashicorp/vault/api"
"github.com/mitchellh/cli"
"github.com/posener/complete"
2015-03-16 04:28:31 +00:00
)
var (
_ cli.Command = (*SecretsListCommand)(nil)
_ cli.CommandAutocomplete = (*SecretsListCommand)(nil)
)
2017-09-05 04:02:45 +00:00
type SecretsListCommand struct {
2017-09-05 04:02:45 +00:00
*BaseCommand
flagDetailed bool
}
func (c *SecretsListCommand) Synopsis() string {
return "List enabled secrets engines"
2017-09-05 04:02:45 +00:00
}
func (c *SecretsListCommand) Help() string {
2017-09-05 04:02:45 +00:00
helpText := `
Usage: vault secrets list [options]
2017-09-05 04:02:45 +00:00
Lists the enabled secret engines on the Vault server. This command also
outputs information about the enabled path including configured TTLs and
2017-09-05 04:02:45 +00:00
human-friendly descriptions. A TTL of "system" indicates that the system
default is in use.
List all enabled secrets engines:
2017-09-05 04:02:45 +00:00
$ vault secrets list
2017-09-05 04:02:45 +00:00
List all enabled secrets engines with detailed output:
2017-09-05 04:02:45 +00:00
$ vault secrets list -detailed
2017-09-05 04:02:45 +00:00
` + c.Flags().Help()
return strings.TrimSpace(helpText)
}
func (c *SecretsListCommand) Flags() *FlagSets {
CLI Enhancements (#3897) * Use Colored UI if stdout is a tty * Add format options to operator unseal * Add format test on operator unseal * Add -no-color output flag, and use BasicUi if no-color flag is provided * Move seal status formatting logic to OutputSealStatus * Apply no-color to warnings from DeprecatedCommands as well * Add OutputWithFormat to support arbitrary data, add format option to auth list * Add ability to output arbitrary list data on TableFormatter * Clear up switch logic on format * Add format option for list-related commands * Add format option to rest of commands that returns a client API response * Remove initOutputYAML and initOutputJSON, and use OutputWithFormat instead * Remove outputAsYAML and outputAsJSON, and use OutputWithFormat instead * Remove -no-color flag, use env var exclusively to toggle colored output * Fix compile * Remove -no-color flag in main.go * Add missing FlagSetOutputFormat * Fix generate-root/decode test * Migrate init functions to main.go * Add no-color flag back as hidden * Handle non-supported data types for TableFormatter.OutputList * Pull formatting much further up to remove the need to use c.flagFormat (#3950) * Pull formatting much further up to remove the need to use c.flagFormat Also remove OutputWithFormat as the logic can cause issues. * Use const for env var * Minor updates * Remove unnecessary check * Fix SSH output and some tests * Fix tests * Make race detector not run on generate root since it kills Travis these days * Update docs * Update docs * Address review feedback * Handle --format as well as -format
2018-02-12 23:12:16 +00:00
set := c.flagSet(FlagSetHTTP | FlagSetOutputFormat)
2017-09-05 04:02:45 +00:00
f := set.NewFlagSet("Command Options")
f.BoolVar(&BoolVar{
Name: "detailed",
Target: &c.flagDetailed,
Default: false,
Usage: "Print detailed information such as TTLs and replication status " +
"about each secrets engine.",
2017-09-05 04:02:45 +00:00
})
return set
}
func (c *SecretsListCommand) AutocompleteArgs() complete.Predictor {
2017-09-05 04:02:45 +00:00
return c.PredictVaultFiles()
}
func (c *SecretsListCommand) AutocompleteFlags() complete.Flags {
2017-09-05 04:02:45 +00:00
return c.Flags().Completions()
2015-03-16 04:28:31 +00:00
}
func (c *SecretsListCommand) Run(args []string) int {
2017-09-05 04:02:45 +00:00
f := c.Flags()
if err := f.Parse(args); err != nil {
c.UI.Error(err.Error())
return 1
}
args = f.Args()
if len(args) > 0 {
c.UI.Error(fmt.Sprintf("Too many arguments (expected 0, got %d)", len(args)))
2015-03-16 04:28:31 +00:00
return 1
}
client, err := c.Client()
if err != nil {
2017-09-05 04:02:45 +00:00
c.UI.Error(err.Error())
2015-03-16 04:28:31 +00:00
return 2
}
mounts, err := client.Sys().ListMounts()
if err != nil {
c.UI.Error(fmt.Sprintf("Error listing secrets engines: %s", err))
2015-03-16 04:28:31 +00:00
return 2
}
CLI Enhancements (#3897) * Use Colored UI if stdout is a tty * Add format options to operator unseal * Add format test on operator unseal * Add -no-color output flag, and use BasicUi if no-color flag is provided * Move seal status formatting logic to OutputSealStatus * Apply no-color to warnings from DeprecatedCommands as well * Add OutputWithFormat to support arbitrary data, add format option to auth list * Add ability to output arbitrary list data on TableFormatter * Clear up switch logic on format * Add format option for list-related commands * Add format option to rest of commands that returns a client API response * Remove initOutputYAML and initOutputJSON, and use OutputWithFormat instead * Remove outputAsYAML and outputAsJSON, and use OutputWithFormat instead * Remove -no-color flag, use env var exclusively to toggle colored output * Fix compile * Remove -no-color flag in main.go * Add missing FlagSetOutputFormat * Fix generate-root/decode test * Migrate init functions to main.go * Add no-color flag back as hidden * Handle non-supported data types for TableFormatter.OutputList * Pull formatting much further up to remove the need to use c.flagFormat (#3950) * Pull formatting much further up to remove the need to use c.flagFormat Also remove OutputWithFormat as the logic can cause issues. * Use const for env var * Minor updates * Remove unnecessary check * Fix SSH output and some tests * Fix tests * Make race detector not run on generate root since it kills Travis these days * Update docs * Update docs * Address review feedback * Handle --format as well as -format
2018-02-12 23:12:16 +00:00
switch Format(c.UI) {
case "table":
if c.flagDetailed {
c.UI.Output(tableOutput(c.detailedMounts(mounts), nil))
return 0
}
c.UI.Output(tableOutput(c.simpleMounts(mounts), nil))
2017-09-05 04:02:45 +00:00
return 0
CLI Enhancements (#3897) * Use Colored UI if stdout is a tty * Add format options to operator unseal * Add format test on operator unseal * Add -no-color output flag, and use BasicUi if no-color flag is provided * Move seal status formatting logic to OutputSealStatus * Apply no-color to warnings from DeprecatedCommands as well * Add OutputWithFormat to support arbitrary data, add format option to auth list * Add ability to output arbitrary list data on TableFormatter * Clear up switch logic on format * Add format option for list-related commands * Add format option to rest of commands that returns a client API response * Remove initOutputYAML and initOutputJSON, and use OutputWithFormat instead * Remove outputAsYAML and outputAsJSON, and use OutputWithFormat instead * Remove -no-color flag, use env var exclusively to toggle colored output * Fix compile * Remove -no-color flag in main.go * Add missing FlagSetOutputFormat * Fix generate-root/decode test * Migrate init functions to main.go * Add no-color flag back as hidden * Handle non-supported data types for TableFormatter.OutputList * Pull formatting much further up to remove the need to use c.flagFormat (#3950) * Pull formatting much further up to remove the need to use c.flagFormat Also remove OutputWithFormat as the logic can cause issues. * Use const for env var * Minor updates * Remove unnecessary check * Fix SSH output and some tests * Fix tests * Make race detector not run on generate root since it kills Travis these days * Update docs * Update docs * Address review feedback * Handle --format as well as -format
2018-02-12 23:12:16 +00:00
default:
return OutputData(c.UI, mounts)
2017-09-05 04:02:45 +00:00
}
}
func (c *SecretsListCommand) simpleMounts(mounts map[string]*api.MountOutput) []string {
2015-03-16 04:28:31 +00:00
paths := make([]string, 0, len(mounts))
for path := range mounts {
2015-03-16 04:28:31 +00:00
paths = append(paths, path)
}
sort.Strings(paths)
out := []string{"Path | Type | Accessor | Description"}
2015-03-16 04:28:31 +00:00
for _, path := range paths {
mount := mounts[path]
out = append(out, fmt.Sprintf("%s | %s | %s | %s", path, mount.Type, mount.Accessor, mount.Description))
2017-09-05 04:02:45 +00:00
}
2017-10-23 21:39:21 +00:00
2017-09-05 04:02:45 +00:00
return out
}
2017-10-23 21:39:21 +00:00
func (c *SecretsListCommand) detailedMounts(mounts map[string]*api.MountOutput) []string {
2017-09-05 04:02:45 +00:00
paths := make([]string, 0, len(mounts))
for path := range mounts {
paths = append(paths, path)
2015-03-16 04:28:31 +00:00
}
2017-09-05 04:02:45 +00:00
sort.Strings(paths)
2015-03-16 04:28:31 +00:00
2017-09-05 04:02:45 +00:00
calcTTL := func(typ string, ttl int) string {
switch {
case typ == "system", typ == "cubbyhole":
return ""
case ttl != 0:
return strconv.Itoa(ttl)
default:
return "system"
}
}
2015-03-16 04:28:31 +00:00
out := []string{"Path | Plugin | Accessor | Default TTL | Max TTL | Force No Cache | Replication | Seal Wrap | External Entropy Access | Options | Description | UUID "}
2017-09-05 04:02:45 +00:00
for _, path := range paths {
mount := mounts[path]
2015-03-16 04:28:31 +00:00
2017-09-05 04:02:45 +00:00
defaultTTL := calcTTL(mount.Type, mount.Config.DefaultLeaseTTL)
maxTTL := calcTTL(mount.Type, mount.Config.MaxLeaseTTL)
2015-03-16 04:28:31 +00:00
2017-09-05 04:02:45 +00:00
replication := "replicated"
if mount.Local {
replication = "local"
}
2015-03-16 04:28:31 +00:00
pluginName := mount.Type
if pluginName == "plugin" {
pluginName = mount.Config.PluginName
}
out = append(out, fmt.Sprintf("%s | %s | %s | %s | %s | %t | %s | %t | %v | %s | %s | %s",
2017-09-05 04:02:45 +00:00
path,
pluginName,
2017-09-05 04:02:45 +00:00
mount.Accessor,
defaultTTL,
maxTTL,
mount.Config.ForceNoCache,
replication,
mount.SealWrap,
mount.ExternalEntropyAccess,
mount.Options,
2017-09-05 04:02:45 +00:00
mount.Description,
mount.UUID,
2017-09-05 04:02:45 +00:00
))
}
2015-03-16 04:28:31 +00:00
2017-09-05 04:02:45 +00:00
return out
2015-03-16 04:28:31 +00:00
}