Enable the credential backend

This commit is contained in:
Armon Dadgar 2015-04-23 21:46:30 -07:00
parent 28b18422b7
commit f30c9c1509
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import (
auditFile "github.com/hashicorp/vault/builtin/audit/file"
credAppId "github.com/hashicorp/vault/builtin/credential/app-id"
credCert "github.com/hashicorp/vault/builtin/credential/cert"
credGitHub "github.com/hashicorp/vault/builtin/credential/github"
credUserpass "github.com/hashicorp/vault/builtin/credential/userpass"
@ -50,6 +51,7 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
"file": auditFile.Factory,
},
CredentialBackends: map[string]logical.Factory{
"cert": credCert.Factory,
"app-id": credAppId.Factory,
"github": credGitHub.Factory,
"userpass": credUserpass.Factory,