Adding transit logical backend

This commit is contained in:
Armon Dadgar
2015-04-15 17:08:12 -07:00
parent 59073cf775
commit d02028a0e4
6 changed files with 515 additions and 2 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/transit"
"github.com/hashicorp/vault/audit"
tokenDisk "github.com/hashicorp/vault/builtin/token/disk"
@@ -51,8 +52,9 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
"github": credGitHub.Factory,
},
LogicalBackends: map[string]logical.Factory{
"aws": aws.Factory,
"consul": consul.Factory,
"aws": aws.Factory,
"consul": consul.Factory,
"transit": transit.Factory,
},
}, nil
},