cli: add postgresql

This commit is contained in:
Mitchell Hashimoto 2015-04-18 18:44:23 -07:00
parent 8edc4d1241
commit 4109218635

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"
@ -54,6 +55,7 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
LogicalBackends: map[string]logical.Factory{
"aws": aws.Factory,
"consul": consul.Factory,
"postgresql": postgresql.Factory,
"transit": transit.Factory,
},
}, nil