cli: add postgresql

This commit is contained in:
Mitchell Hashimoto 2015-04-18 18:44:23 -07:00
parent 8edc4d1241
commit 4109218635
1 changed files with 5 additions and 3 deletions

View File

@ -10,6 +10,7 @@ import (
"github.com/hashicorp/vault/builtin/logical/aws"
"github.com/hashicorp/vault/builtin/logical/consul"
"github.com/hashicorp/vault/builtin/logical/postgresql"
"github.com/hashicorp/vault/builtin/logical/transit"
"github.com/hashicorp/vault/audit"
@ -52,9 +53,10 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
"github": credGitHub.Factory,
},
LogicalBackends: map[string]logical.Factory{
"aws": aws.Factory,
"consul": consul.Factory,
"transit": transit.Factory,
"aws": aws.Factory,
"consul": consul.Factory,
"postgresql": postgresql.Factory,
"transit": transit.Factory,
},
}, nil
},