open-vault/builtin/credential/userpass/backend.go

51 lines
956 B
Go
Raw Normal View History

2015-04-19 21:59:30 +00:00
package userpass
import (
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
)
func Factory(map[string]string) (logical.Backend, error) {
return Backend(), nil
}
func Backend() *framework.Backend {
var b backend
b.Backend = &framework.Backend{
Help: backendHelp,
PathsSpecial: &logical.Paths{
Root: []string{
"users/*",
},
Unauthenticated: []string{
2015-04-19 22:06:29 +00:00
"login/*",
2015-04-19 21:59:30 +00:00
},
},
Paths: append([]*framework.Path{
2015-04-19 22:06:29 +00:00
pathLogin(&b),
2015-04-19 21:59:30 +00:00
pathUsers(&b),
}),
2015-04-19 22:12:50 +00:00
AuthRenew: b.pathLoginRenew,
2015-04-19 21:59:30 +00:00
}
return b.Backend
}
type backend struct {
*framework.Backend
}
const backendHelp = `
The "userpass" credential provider allows authentication using
a combination of a username and password. No additional factors
are supported.
The username/password combination is configured using the "users/"
endpoints by a user with root access. Authentication is then done
by suppying the two fields for "login".
`