open-vault/builtin/logical/aws/backend.go

57 lines
1.1 KiB
Go
Raw Normal View History

2015-03-20 16:59:48 +00:00
package aws
import (
2015-04-04 03:36:47 +00:00
"strings"
"time"
2015-03-20 18:32:18 +00:00
"github.com/hashicorp/vault/logical"
2015-03-20 16:59:48 +00:00
"github.com/hashicorp/vault/logical/framework"
)
2015-03-20 18:32:18 +00:00
func Factory(map[string]string) (logical.Backend, error) {
return Backend(), nil
}
2015-03-20 16:59:48 +00:00
func Backend() *framework.Backend {
var b backend
b.Backend = &framework.Backend{
2015-04-04 03:36:47 +00:00
Help: strings.TrimSpace(backendHelp),
2015-03-31 03:30:07 +00:00
PathsSpecial: &logical.Paths{
Root: []string{
"config/*",
2015-03-31 03:30:07 +00:00
},
2015-03-20 16:59:48 +00:00
},
Paths: []*framework.Path{
pathConfigRoot(),
2015-04-19 05:25:37 +00:00
pathConfigLease(&b),
pathRoles(),
2015-03-20 16:59:48 +00:00
pathUser(&b),
},
Secrets: []*framework.Secret{
2015-04-19 05:25:37 +00:00
secretAccessKeys(&b),
2015-03-20 16:59:48 +00:00
},
Rollback: rollback,
RollbackMinAge: 5 * time.Minute,
2015-03-20 16:59:48 +00:00
}
return b.Backend
}
type backend struct {
*framework.Backend
}
2015-04-04 03:36:47 +00:00
const backendHelp = `
The AWS backend dynamically generates AWS access keys for a set of
IAM policies. The AWS access keys have a configurable lease set and
are automatically revoked at the end of the lease.
2015-04-04 04:10:54 +00:00
After mounting this backend, credentials to generate IAM keys must
be configured with the "root" path and policies must be written using
the "roles/" endpoints before any access keys can be generated.
2015-04-04 03:36:47 +00:00
`