-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbackend.go
60 lines (51 loc) · 1.11 KB
/
backend.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package wireguard
import (
"context"
"strings"
"sync"
"github.com/hashicorp/vault/sdk/framework"
"github.com/hashicorp/vault/sdk/logical"
)
func Factory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error) {
b := Backend()
if err := b.Setup(ctx, conf); err != nil {
return nil, err
}
return b, nil
}
func Backend() *backend {
var b backend
b.Backend = &framework.Backend{
Help: strings.TrimSpace(backendHelp),
PathsSpecial: &logical.Paths{
LocalStorage: []string{
framework.WALPrefix,
},
SealWrapStorage: []string{
"config",
"role/*",
},
},
Paths: framework.PathAppend(
b.pathConfig(),
b.pathRoles(),
b.pathServers(),
b.pathCreds(),
b.pathServerCreds(),
),
Secrets: []*framework.Secret{
b.secretClientConfiguration(),
b.secretServerConfiguration(),
},
BackendType: logical.TypeLogical,
}
return &b
}
type backend struct {
*framework.Backend
sync.RWMutex
}
const backendHelp = `
The Wireguard backend supports managing a wireguard server
After mounting this secret backend, configure it using the "wireguard/config" path.
`