open-vault/cli/commands.go

316 lines
7.2 KiB
Go
Raw Normal View History

package cli
2015-03-04 07:03:24 +00:00
import (
"os"
2015-04-05 01:07:53 +00:00
auditFile "github.com/hashicorp/vault/builtin/audit/file"
2015-04-24 18:06:19 +00:00
auditSyslog "github.com/hashicorp/vault/builtin/audit/syslog"
"github.com/hashicorp/vault/command/server"
2015-11-09 18:52:55 +00:00
"github.com/hashicorp/vault/version"
2015-04-05 01:07:53 +00:00
2015-04-05 01:40:21 +00:00
credAppId "github.com/hashicorp/vault/builtin/credential/app-id"
credAws "github.com/hashicorp/vault/builtin/credential/aws"
2015-04-24 04:46:30 +00:00
credCert "github.com/hashicorp/vault/builtin/credential/cert"
2015-04-05 01:40:21 +00:00
credGitHub "github.com/hashicorp/vault/builtin/credential/github"
credLdap "github.com/hashicorp/vault/builtin/credential/ldap"
credUserpass "github.com/hashicorp/vault/builtin/credential/userpass"
2015-04-05 01:07:53 +00:00
2015-03-20 18:32:18 +00:00
"github.com/hashicorp/vault/builtin/logical/aws"
"github.com/hashicorp/vault/builtin/logical/cassandra"
2015-03-21 16:25:12 +00:00
"github.com/hashicorp/vault/builtin/logical/consul"
2016-03-03 14:19:17 +00:00
"github.com/hashicorp/vault/builtin/logical/mssql"
"github.com/hashicorp/vault/builtin/logical/mysql"
"github.com/hashicorp/vault/builtin/logical/pki"
2015-04-19 01:44:23 +00:00
"github.com/hashicorp/vault/builtin/logical/postgresql"
"github.com/hashicorp/vault/builtin/logical/ssh"
2015-04-16 00:08:12 +00:00
"github.com/hashicorp/vault/builtin/logical/transit"
2015-04-05 01:07:53 +00:00
"github.com/hashicorp/vault/audit"
2015-03-04 07:03:24 +00:00
"github.com/hashicorp/vault/command"
2015-03-20 18:32:18 +00:00
"github.com/hashicorp/vault/logical"
2016-04-01 17:16:05 +00:00
"github.com/hashicorp/vault/meta"
2015-03-04 07:03:24 +00:00
"github.com/mitchellh/cli"
)
2015-04-13 00:19:26 +00:00
// Commands returns the mapping of CLI commands for Vault. The meta
// parameter lets you set meta options for all commands.
2016-04-01 17:16:05 +00:00
func Commands(metaPtr *meta.Meta) map[string]cli.CommandFactory {
2015-04-13 00:19:26 +00:00
if metaPtr == nil {
2016-04-01 18:23:15 +00:00
metaPtr = &meta.Meta{
TokenHelper: command.DefaultTokenHelper,
}
2015-03-04 07:34:32 +00:00
}
2015-03-04 07:03:24 +00:00
2016-04-01 17:16:05 +00:00
if metaPtr.Ui == nil {
metaPtr.Ui = &cli.BasicUi{
2015-04-13 00:19:26 +00:00
Writer: os.Stdout,
ErrorWriter: os.Stderr,
}
}
return map[string]cli.CommandFactory{
2015-04-07 20:46:35 +00:00
"init": func() (cli.Command, error) {
return &command.InitCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 20:46:35 +00:00
}, nil
},
"server": func() (cli.Command, error) {
return &command.ServerCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 20:46:35 +00:00
AuditBackends: map[string]audit.Factory{
2015-04-24 18:06:19 +00:00
"file": auditFile.Factory,
"syslog": auditSyslog.Factory,
2015-04-07 20:46:35 +00:00
},
CredentialBackends: map[string]logical.Factory{
2015-04-24 04:46:30 +00:00
"cert": credCert.Factory,
"aws": credAws.Factory,
"app-id": credAppId.Factory,
"github": credGitHub.Factory,
"userpass": credUserpass.Factory,
"ldap": credLdap.Factory,
2015-04-07 20:46:35 +00:00
},
LogicalBackends: map[string]logical.Factory{
2015-04-19 01:44:23 +00:00
"aws": aws.Factory,
"consul": consul.Factory,
"postgresql": postgresql.Factory,
"cassandra": cassandra.Factory,
"pki": pki.Factory,
2015-04-19 01:44:23 +00:00
"transit": transit.Factory,
2016-03-03 14:19:17 +00:00
"mssql": mssql.Factory,
"mysql": mysql.Factory,
"ssh": ssh.Factory,
2015-04-07 20:46:35 +00:00
},
ShutdownCh: command.MakeShutdownCh(),
SighupCh: command.MakeSighupCh(),
ReloadFuncs: map[string][]server.ReloadFunc{},
2015-04-07 20:46:35 +00:00
}, nil
},
"ssh": func() (cli.Command, error) {
2015-07-01 15:58:49 +00:00
return &command.SSHCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
"path-help": func() (cli.Command, error) {
return &command.PathHelpCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-03 05:42:05 +00:00
}, nil
},
2015-03-04 07:34:32 +00:00
"auth": func() (cli.Command, error) {
return &command.AuthCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-06 16:53:43 +00:00
Handlers: map[string]command.AuthHandler{
"github": &credGitHub.CLIHandler{},
"userpass": &credUserpass.CLIHandler{},
"ldap": &credLdap.CLIHandler{},
2015-06-30 03:29:41 +00:00
"cert": &credCert.CLIHandler{},
2015-04-06 16:53:43 +00:00
},
2015-03-04 07:34:32 +00:00
}, nil
},
2015-04-02 00:09:11 +00:00
"auth-enable": func() (cli.Command, error) {
return &command.AuthEnableCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-02 00:09:11 +00:00
}, nil
},
2015-04-02 00:14:11 +00:00
"auth-disable": func() (cli.Command, error) {
return &command.AuthDisableCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-02 00:14:11 +00:00
}, nil
},
2015-04-08 01:19:44 +00:00
"audit-list": func() (cli.Command, error) {
return &command.AuditListCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-08 01:19:44 +00:00
}, nil
},
2015-04-08 01:23:28 +00:00
"audit-disable": func() (cli.Command, error) {
return &command.AuditDisableCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-08 01:23:28 +00:00
}, nil
},
2015-04-08 05:42:04 +00:00
"audit-enable": func() (cli.Command, error) {
return &command.AuditEnableCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-08 05:42:04 +00:00
}, nil
},
"key-status": func() (cli.Command, error) {
return &command.KeyStatusCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
"policies": func() (cli.Command, error) {
2015-04-02 01:45:11 +00:00
return &command.PolicyListCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-02 01:45:11 +00:00
}, nil
},
2015-04-19 23:36:11 +00:00
"policy-delete": func() (cli.Command, error) {
return &command.PolicyDeleteCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-19 23:36:11 +00:00
}, nil
},
2015-04-02 05:58:37 +00:00
"policy-write": func() (cli.Command, error) {
return &command.PolicyWriteCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-02 05:58:37 +00:00
}, nil
},
2015-03-16 03:35:33 +00:00
"read": func() (cli.Command, error) {
return &command.ReadCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-04 19:08:13 +00:00
}, nil
},
2015-03-04 07:34:32 +00:00
2016-01-14 19:18:27 +00:00
"list": func() (cli.Command, error) {
return &command.ListCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-04 19:08:13 +00:00
}, nil
},
2015-03-04 07:34:32 +00:00
2016-01-14 19:18:27 +00:00
"write": func() (cli.Command, error) {
return &command.WriteCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 18:16:08 +00:00
}, nil
},
2016-01-14 19:18:27 +00:00
"delete": func() (cli.Command, error) {
return &command.DeleteCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
2015-05-28 22:08:09 +00:00
"rekey": func() (cli.Command, error) {
return &command.RekeyCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-05-28 22:08:09 +00:00
}, nil
},
"generate-root": func() (cli.Command, error) {
return &command.GenerateRootCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
2015-04-14 00:37:39 +00:00
"renew": func() (cli.Command, error) {
return &command.RenewCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-14 00:37:39 +00:00
}, nil
},
2015-04-01 02:21:02 +00:00
"revoke": func() (cli.Command, error) {
return &command.RevokeCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-01 02:21:02 +00:00
}, nil
},
2015-03-04 16:56:10 +00:00
"seal": func() (cli.Command, error) {
return &command.SealCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-04 16:56:10 +00:00
}, nil
},
2015-04-20 19:11:21 +00:00
"status": func() (cli.Command, error) {
return &command.StatusCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-13 18:33:17 +00:00
}, nil
},
2015-03-04 07:57:23 +00:00
"unseal": func() (cli.Command, error) {
return &command.UnsealCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-04 07:57:23 +00:00
}, nil
},
"step-down": func() (cli.Command, error) {
return &command.StepDownCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
2015-03-31 23:28:46 +00:00
"mount": func() (cli.Command, error) {
return &command.MountCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-31 23:28:46 +00:00
}, nil
},
2015-03-16 04:28:31 +00:00
"mounts": func() (cli.Command, error) {
return &command.MountsCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-03-16 04:28:31 +00:00
}, nil
},
"mount-tune": func() (cli.Command, error) {
return &command.MountTuneCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
2015-04-07 17:46:47 +00:00
"remount": func() (cli.Command, error) {
return &command.RemountCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 17:46:47 +00:00
}, nil
},
"rotate": func() (cli.Command, error) {
return &command.RotateCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
2015-04-07 17:46:47 +00:00
},
2015-04-07 17:38:51 +00:00
"unmount": func() (cli.Command, error) {
return &command.UnmountCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 17:38:51 +00:00
}, nil
},
2015-04-07 21:20:18 +00:00
"token-create": func() (cli.Command, error) {
return &command.TokenCreateCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 21:20:18 +00:00
}, nil
},
"token-lookup": func() (cli.Command, error) {
return &command.TokenLookupCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
}, nil
},
2015-04-20 01:04:24 +00:00
"token-renew": func() (cli.Command, error) {
return &command.TokenRenewCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-20 01:04:24 +00:00
}, nil
},
2015-04-07 21:36:17 +00:00
"token-revoke": func() (cli.Command, error) {
return &command.TokenRevokeCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2015-04-07 21:36:17 +00:00
}, nil
},
2016-03-02 18:42:32 +00:00
"capabilities": func() (cli.Command, error) {
return &command.CapabilitiesCommand{
2016-04-01 17:16:05 +00:00
Meta: *metaPtr,
2016-03-02 18:42:32 +00:00
}, nil
},
2015-03-04 07:03:24 +00:00
"version": func() (cli.Command, error) {
2015-11-09 18:52:55 +00:00
versionInfo := version.GetVersion()
2015-03-04 07:03:24 +00:00
return &command.VersionCommand{
2015-11-09 18:52:55 +00:00
VersionInfo: versionInfo,
2016-04-01 17:16:05 +00:00
Ui: metaPtr.Ui,
2015-03-04 07:03:24 +00:00
}, nil
},
}
2015-03-04 07:03:24 +00:00
}