2015-03-31 23:28:46 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2018-03-09 19:32:28 +00:00
|
|
|
"flag"
|
2015-03-31 23:28:46 +00:00
|
|
|
"fmt"
|
2018-04-09 16:39:32 +00:00
|
|
|
"strconv"
|
2015-03-31 23:28:46 +00:00
|
|
|
"strings"
|
2017-09-05 04:02:24 +00:00
|
|
|
"time"
|
2015-08-31 18:27:49 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/vault/api"
|
2018-11-07 01:21:24 +00:00
|
|
|
"github.com/hashicorp/vault/helper/consts"
|
2017-09-05 04:02:24 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2017-08-24 22:23:40 +00:00
|
|
|
"github.com/posener/complete"
|
2015-03-31 23:28:46 +00:00
|
|
|
)
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
var _ cli.Command = (*SecretsEnableCommand)(nil)
|
|
|
|
var _ cli.CommandAutocomplete = (*SecretsEnableCommand)(nil)
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
type SecretsEnableCommand struct {
|
2017-09-05 04:02:24 +00:00
|
|
|
*BaseCommand
|
|
|
|
|
2018-03-21 23:56:47 +00:00
|
|
|
flagDescription string
|
|
|
|
flagPath string
|
|
|
|
flagDefaultLeaseTTL time.Duration
|
|
|
|
flagMaxLeaseTTL time.Duration
|
|
|
|
flagAuditNonHMACRequestKeys []string
|
|
|
|
flagAuditNonHMACResponseKeys []string
|
|
|
|
flagListingVisibility string
|
|
|
|
flagPassthroughRequestHeaders []string
|
|
|
|
flagForceNoCache bool
|
|
|
|
flagPluginName string
|
|
|
|
flagOptions map[string]string
|
|
|
|
flagLocal bool
|
|
|
|
flagSealWrap bool
|
2018-04-09 16:39:32 +00:00
|
|
|
flagVersion int
|
2017-09-05 04:02:24 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) Synopsis() string {
|
|
|
|
return "Enable a secrets engine"
|
2017-09-05 04:02:24 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) Help() string {
|
2017-09-05 04:02:24 +00:00
|
|
|
helpText := `
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: vault secrets enable [options] TYPE
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Enables a secrets engine. By default, secrets engines are enabled at the path
|
|
|
|
corresponding to their TYPE, but users can customize the path using the
|
|
|
|
-path option.
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Once enabled, Vault will route all requests which begin with the path to the
|
|
|
|
secrets engine.
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Enable the AWS secrets engine at aws/:
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
$ vault secrets enable aws
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Enable the SSH secrets engine at ssh-prod/:
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
$ vault secrets enable -path=ssh-prod ssh
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Enable the database secrets engine with an explicit maximum TTL of 30m:
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
$ vault secrets enable -max-lease-ttl=30m database
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
Enable a custom plugin (after it is registered in the plugin registry):
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
$ vault secrets enable -path=my-secrets -plugin-name=my-plugin plugin
|
2017-09-05 04:02:24 +00:00
|
|
|
|
2018-11-07 01:21:24 +00:00
|
|
|
OR (preferred way):
|
|
|
|
|
|
|
|
$ vault secrets enable -path=my-secrets my-plugin
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
For a full list of secrets engines and examples, please see the documentation.
|
2017-09-05 04:02:24 +00:00
|
|
|
|
|
|
|
` + c.Flags().Help()
|
|
|
|
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) Flags() *FlagSets {
|
2017-09-05 04:02:24 +00:00
|
|
|
set := c.flagSet(FlagSetHTTP)
|
|
|
|
|
|
|
|
f := set.NewFlagSet("Command Options")
|
|
|
|
|
|
|
|
f.StringVar(&StringVar{
|
|
|
|
Name: "description",
|
|
|
|
Target: &c.flagDescription,
|
|
|
|
Completion: complete.PredictAnything,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "Human-friendly description for the purpose of this engine.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
f.StringVar(&StringVar{
|
|
|
|
Name: "path",
|
|
|
|
Target: &c.flagPath,
|
|
|
|
Default: "", // The default is complex, so we have to manually document
|
|
|
|
Completion: complete.PredictAnything,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "Place where the secrets engine will be accessible. This must be " +
|
|
|
|
"unique cross all secrets engines. This defaults to the \"type\" of the " +
|
|
|
|
"secrets engine.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
f.DurationVar(&DurationVar{
|
|
|
|
Name: "default-lease-ttl",
|
|
|
|
Target: &c.flagDefaultLeaseTTL,
|
|
|
|
Completion: complete.PredictAnything,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "The default lease TTL for this secrets engine. If unspecified, " +
|
|
|
|
"this defaults to the Vault server's globally configured default lease " +
|
|
|
|
"TTL.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
f.DurationVar(&DurationVar{
|
|
|
|
Name: "max-lease-ttl",
|
|
|
|
Target: &c.flagMaxLeaseTTL,
|
|
|
|
Completion: complete.PredictAnything,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "The maximum lease TTL for this secrets engine. If unspecified, " +
|
|
|
|
"this defaults to the Vault server's globally configured maximum lease " +
|
|
|
|
"TTL.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
2018-03-09 19:32:28 +00:00
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
|
|
Name: flagNameAuditNonHMACRequestKeys,
|
|
|
|
Target: &c.flagAuditNonHMACRequestKeys,
|
|
|
|
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
|
|
|
"devices in the request data object.",
|
|
|
|
})
|
|
|
|
|
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
|
|
Name: flagNameAuditNonHMACResponseKeys,
|
|
|
|
Target: &c.flagAuditNonHMACResponseKeys,
|
|
|
|
Usage: "Comma-separated string or list of keys that will not be HMAC'd by audit" +
|
|
|
|
"devices in the response data object.",
|
|
|
|
})
|
|
|
|
|
2018-03-20 03:16:33 +00:00
|
|
|
f.StringVar(&StringVar{
|
|
|
|
Name: flagNameListingVisibility,
|
|
|
|
Target: &c.flagListingVisibility,
|
|
|
|
Usage: "Determines the visibility of the mount in the UI-specific listing endpoint.",
|
|
|
|
})
|
|
|
|
|
2018-03-21 23:56:47 +00:00
|
|
|
f.StringSliceVar(&StringSliceVar{
|
|
|
|
Name: flagNamePassthroughRequestHeaders,
|
|
|
|
Target: &c.flagPassthroughRequestHeaders,
|
|
|
|
Usage: "Comma-separated string or list of request header values that " +
|
|
|
|
"will be sent to the backend",
|
|
|
|
})
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
f.BoolVar(&BoolVar{
|
|
|
|
Name: "force-no-cache",
|
|
|
|
Target: &c.flagForceNoCache,
|
|
|
|
Default: false,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "Force the secrets engine to disable caching. If unspecified, this " +
|
2017-09-05 04:02:24 +00:00
|
|
|
"defaults to the Vault server's globally configured cache settings. " +
|
|
|
|
"This does not affect caching of the underlying encrypted data storage.",
|
|
|
|
})
|
|
|
|
|
|
|
|
f.StringVar(&StringVar{
|
|
|
|
Name: "plugin-name",
|
|
|
|
Target: &c.flagPluginName,
|
2018-11-07 01:21:24 +00:00
|
|
|
Completion: c.PredictVaultPlugins(consts.PluginTypeSecrets, consts.PluginTypeDatabase),
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "Name of the secrets engine plugin. This plugin name must already " +
|
|
|
|
"exist in Vault's plugin catalog.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
2018-03-21 19:04:27 +00:00
|
|
|
f.StringMapVar(&StringMapVar{
|
|
|
|
Name: "options",
|
|
|
|
Target: &c.flagOptions,
|
|
|
|
Completion: complete.PredictAnything,
|
2018-03-22 03:58:16 +00:00
|
|
|
Usage: "Key-value pair provided as key=value for the mount options. " +
|
|
|
|
"This can be specified multiple times.",
|
2018-03-21 19:04:27 +00:00
|
|
|
})
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
f.BoolVar(&BoolVar{
|
|
|
|
Name: "local",
|
|
|
|
Target: &c.flagLocal,
|
|
|
|
Default: false,
|
2017-09-08 02:01:31 +00:00
|
|
|
Usage: "Mark the secrets engine as local-only. Local engines are not " +
|
|
|
|
"replicated or removed by replication.",
|
2017-09-05 04:02:24 +00:00
|
|
|
})
|
|
|
|
|
2018-01-03 19:02:31 +00:00
|
|
|
f.BoolVar(&BoolVar{
|
|
|
|
Name: "seal-wrap",
|
|
|
|
Target: &c.flagSealWrap,
|
|
|
|
Default: false,
|
|
|
|
Usage: "Enable seal wrapping of critical values in the secrets engine.",
|
|
|
|
})
|
|
|
|
|
2018-04-09 16:39:32 +00:00
|
|
|
f.IntVar(&IntVar{
|
|
|
|
Name: "version",
|
|
|
|
Target: &c.flagVersion,
|
|
|
|
Default: 0,
|
|
|
|
Usage: "Select the version of the engine to run. Not supported by all engines.",
|
|
|
|
})
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
return set
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) AutocompleteArgs() complete.Predictor {
|
2017-09-05 04:02:24 +00:00
|
|
|
return c.PredictVaultAvailableMounts()
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) AutocompleteFlags() complete.Flags {
|
2017-09-05 04:02:24 +00:00
|
|
|
return c.Flags().Completions()
|
2015-03-31 23:28:46 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
func (c *SecretsEnableCommand) Run(args []string) int {
|
2017-09-05 04:02:24 +00:00
|
|
|
f := c.Flags()
|
|
|
|
|
|
|
|
if err := f.Parse(args); err != nil {
|
|
|
|
c.UI.Error(err.Error())
|
2015-03-31 23:28:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
args = f.Args()
|
2017-09-08 02:01:31 +00:00
|
|
|
switch {
|
|
|
|
case len(args) < 1:
|
|
|
|
c.UI.Error(fmt.Sprintf("Not enough arguments (expected 1, got %d)", len(args)))
|
2017-09-05 04:02:24 +00:00
|
|
|
return 1
|
2017-09-08 02:01:31 +00:00
|
|
|
case len(args) > 1:
|
2017-09-05 04:02:24 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
|
2015-03-31 23:28:46 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
client, err := c.Client()
|
|
|
|
if err != nil {
|
|
|
|
c.UI.Error(err.Error())
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
// Get the engine type type (first arg)
|
|
|
|
engineType := strings.TrimSpace(args[0])
|
2018-11-07 01:21:24 +00:00
|
|
|
if engineType == "plugin" {
|
|
|
|
engineType = c.flagPluginName
|
|
|
|
}
|
2015-03-31 23:28:46 +00:00
|
|
|
|
|
|
|
// If no path is specified, we default the path to the backend type
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
// or use the plugin name if it's a plugin backend
|
2017-09-05 04:02:24 +00:00
|
|
|
mountPath := c.flagPath
|
|
|
|
if mountPath == "" {
|
2017-09-08 02:01:31 +00:00
|
|
|
if engineType == "plugin" {
|
2017-09-05 04:02:24 +00:00
|
|
|
mountPath = c.flagPluginName
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
} else {
|
2017-09-08 02:01:31 +00:00
|
|
|
mountPath = engineType
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
}
|
2015-03-31 23:28:46 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 16:39:32 +00:00
|
|
|
if c.flagVersion > 0 {
|
|
|
|
if c.flagOptions == nil {
|
|
|
|
c.flagOptions = make(map[string]string)
|
|
|
|
}
|
|
|
|
c.flagOptions["version"] = strconv.Itoa(c.flagVersion)
|
|
|
|
}
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
// Append a trailing slash to indicate it's a path in output
|
|
|
|
mountPath = ensureTrailingSlash(mountPath)
|
2015-03-31 23:28:46 +00:00
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
// Build mount input
|
|
|
|
mountInput := &api.MountInput{
|
2017-09-08 02:01:31 +00:00
|
|
|
Type: engineType,
|
2017-09-05 04:02:24 +00:00
|
|
|
Description: c.flagDescription,
|
|
|
|
Local: c.flagLocal,
|
2018-01-03 19:02:31 +00:00
|
|
|
SealWrap: c.flagSealWrap,
|
2015-09-25 13:46:20 +00:00
|
|
|
Config: api.MountConfigInput{
|
2017-09-05 04:02:24 +00:00
|
|
|
DefaultLeaseTTL: c.flagDefaultLeaseTTL.String(),
|
|
|
|
MaxLeaseTTL: c.flagMaxLeaseTTL.String(),
|
|
|
|
ForceNoCache: c.flagForceNoCache,
|
2015-09-25 13:46:20 +00:00
|
|
|
},
|
2018-03-21 19:04:27 +00:00
|
|
|
Options: c.flagOptions,
|
2015-08-31 18:27:49 +00:00
|
|
|
}
|
|
|
|
|
2018-03-09 19:32:28 +00:00
|
|
|
// Set these values only if they are provided in the CLI
|
|
|
|
f.Visit(func(fl *flag.Flag) {
|
|
|
|
if fl.Name == flagNameAuditNonHMACRequestKeys {
|
|
|
|
mountInput.Config.AuditNonHMACRequestKeys = c.flagAuditNonHMACRequestKeys
|
|
|
|
}
|
|
|
|
|
|
|
|
if fl.Name == flagNameAuditNonHMACResponseKeys {
|
2018-03-19 13:56:57 +00:00
|
|
|
mountInput.Config.AuditNonHMACResponseKeys = c.flagAuditNonHMACResponseKeys
|
2018-03-09 19:32:28 +00:00
|
|
|
}
|
2018-03-20 03:16:33 +00:00
|
|
|
|
|
|
|
if fl.Name == flagNameListingVisibility {
|
|
|
|
mountInput.Config.ListingVisibility = c.flagListingVisibility
|
|
|
|
}
|
2018-03-21 23:56:47 +00:00
|
|
|
|
|
|
|
if fl.Name == flagNamePassthroughRequestHeaders {
|
|
|
|
mountInput.Config.PassthroughRequestHeaders = c.flagPassthroughRequestHeaders
|
|
|
|
}
|
2018-03-09 19:32:28 +00:00
|
|
|
})
|
|
|
|
|
2017-09-05 04:02:24 +00:00
|
|
|
if err := client.Sys().Mount(mountPath, mountInput); err != nil {
|
2017-09-08 02:01:31 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error enabling: %s", err))
|
2015-03-31 23:28:46 +00:00
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:01:31 +00:00
|
|
|
thing := engineType + " secrets engine"
|
|
|
|
if engineType == "plugin" {
|
|
|
|
thing = c.flagPluginName + " plugin"
|
Backend plugin system (#2874)
* Add backend plugin changes
* Fix totp backend plugin tests
* Fix logical/plugin InvalidateKey test
* Fix plugin catalog CRUD test, fix NoopBackend
* Clean up commented code block
* Fix system backend mount test
* Set plugin_name to omitempty, fix handleMountTable config parsing
* Clean up comments, keep shim connections alive until cleanup
* Include pluginClient, disallow LookupPlugin call from within a plugin
* Add wrapper around backendPluginClient for proper cleanup
* Add logger shim tests
* Add logger, storage, and system shim tests
* Use pointer receivers for system view shim
* Use plugin name if no path is provided on mount
* Enable plugins for auth backends
* Add backend type attribute, move builtin/plugin/package
* Fix merge conflict
* Fix missing plugin name in mount config
* Add integration tests on enabling auth backend plugins
* Remove dependency cycle on mock-plugin
* Add passthrough backend plugin, use logical.BackendType to determine lease generation
* Remove vault package dependency on passthrough package
* Add basic impl test for passthrough plugin
* Incorporate feedback; set b.backend after shims creation on backendPluginServer
* Fix totp plugin test
* Add plugin backends docs
* Fix tests
* Fix builtin/plugin tests
* Remove flatten from PluginRunner fields
* Move mock plugin to logical/plugin, remove totp and passthrough plugins
* Move pluginMap into newPluginClient
* Do not create storage RPC connection on HandleRequest and HandleExistenceCheck
* Change shim logger's Fatal to no-op
* Change BackendType to uint32, match UX backend types
* Change framework.Backend Setup signature
* Add Setup func to logical.Backend interface
* Move OptionallyEnableMlock call into plugin.Serve, update docs and comments
* Remove commented var in plugin package
* RegisterLicense on logical.Backend interface (#3017)
* Add RegisterLicense to logical.Backend interface
* Update RegisterLicense to use callback func on framework.Backend
* Refactor framework.Backend.RegisterLicense
* plugin: Prevent plugin.SystemViewClient.ResponseWrapData from getting JWTs
* plugin: Revert BackendType to remove TypePassthrough and related references
* Fix typo in plugin backends docs
2017-07-20 17:28:40 +00:00
|
|
|
}
|
2017-09-08 02:01:31 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("Success! Enabled the %s at: %s", thing, mountPath))
|
2015-03-31 23:28:46 +00:00
|
|
|
return 0
|
|
|
|
}
|