2015-06-16 20:58:54 +00:00
|
|
|
package ssh
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
2015-07-22 18:15:19 +00:00
|
|
|
"github.com/hashicorp/vault/helper/salt"
|
2015-06-16 20:58:54 +00:00
|
|
|
"github.com/hashicorp/vault/logical"
|
|
|
|
"github.com/hashicorp/vault/logical/framework"
|
|
|
|
)
|
|
|
|
|
2015-07-01 13:37:11 +00:00
|
|
|
func Factory(conf *logical.BackendConfig) (logical.Backend, error) {
|
2015-07-22 18:15:19 +00:00
|
|
|
b, err := Backend(conf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return b.Setup(conf)
|
2015-06-16 20:58:54 +00:00
|
|
|
}
|
|
|
|
|
2015-07-22 18:15:19 +00:00
|
|
|
func Backend(conf *logical.BackendConfig) (*framework.Backend, error) {
|
|
|
|
salt, err := salt.NewSalt(conf.View, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:58:54 +00:00
|
|
|
var b backend
|
2015-07-22 18:15:19 +00:00
|
|
|
b.salt = salt
|
2015-06-16 20:58:54 +00:00
|
|
|
b.Backend = &framework.Backend{
|
|
|
|
Help: strings.TrimSpace(backendHelp),
|
|
|
|
|
|
|
|
PathsSpecial: &logical.Paths{
|
2015-07-22 18:15:19 +00:00
|
|
|
Root: []string{"config/*"},
|
|
|
|
Unauthenticated: []string{"verify"},
|
2015-06-16 20:58:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Paths: []*framework.Path{
|
|
|
|
pathConfigLease(&b),
|
2015-06-24 22:13:12 +00:00
|
|
|
pathKeys(&b),
|
2015-06-16 20:58:54 +00:00
|
|
|
pathRoles(&b),
|
2015-06-24 22:13:12 +00:00
|
|
|
pathRoleCreate(&b),
|
2015-06-26 01:47:32 +00:00
|
|
|
pathLookup(&b),
|
2015-07-22 18:15:19 +00:00
|
|
|
pathVerify(&b),
|
2015-06-16 20:58:54 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
Secrets: []*framework.Secret{
|
2015-07-01 15:58:49 +00:00
|
|
|
secretSSHKey(&b),
|
2015-07-22 18:15:19 +00:00
|
|
|
secretOTP(&b),
|
2015-06-16 20:58:54 +00:00
|
|
|
},
|
|
|
|
}
|
2015-07-22 18:15:19 +00:00
|
|
|
return b.Backend, nil
|
2015-06-16 20:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type backend struct {
|
|
|
|
*framework.Backend
|
2015-07-22 18:15:19 +00:00
|
|
|
salt *salt.Salt
|
2015-06-16 20:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const backendHelp = `
|
2015-07-02 01:26:42 +00:00
|
|
|
The SSH backend dynamically generates SSH private keys for
|
|
|
|
remote hosts.The generated key has a configurable lease set
|
|
|
|
and are automatically revoked at the end of the lease.
|
|
|
|
|
|
|
|
After mounting this backend, configure the lease using the
|
|
|
|
'config/lease' endpoint. The shared SSH key belonging to any
|
|
|
|
infrastructure should be registered with the 'roles/' endpoint
|
|
|
|
before dynamic keys for remote hosts can be generated.
|
2015-06-16 20:58:54 +00:00
|
|
|
`
|