70 lines
1.3 KiB
Go
70 lines
1.3 KiB
Go
package vault
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/hashicorp/vault/api"
|
|
"go.unistack.org/micro/v3/config"
|
|
)
|
|
|
|
type httpClientKey struct{}
|
|
|
|
func HTTPClient(c *http.Client) config.Option {
|
|
return config.SetOption(httpClientKey{}, c)
|
|
}
|
|
|
|
type configKey struct{}
|
|
|
|
func Config(cfg *api.Config) config.Option {
|
|
return config.SetOption(configKey{}, cfg)
|
|
}
|
|
|
|
type tokenKey struct{}
|
|
|
|
func Token(token string) config.Option {
|
|
return config.SetOption(tokenKey{}, token)
|
|
}
|
|
|
|
type addrKey struct{}
|
|
|
|
func Address(addr string) config.Option {
|
|
return config.SetOption(addrKey{}, addr)
|
|
}
|
|
|
|
type pathKey struct{}
|
|
|
|
func Path(path string) config.Option {
|
|
return config.SetOption(pathKey{}, path)
|
|
}
|
|
|
|
func LoadPath(path string) config.LoadOption {
|
|
return config.SetLoadOption(pathKey{}, path)
|
|
}
|
|
|
|
func SavePath(path string) config.SaveOption {
|
|
return config.SetSaveOption(pathKey{}, path)
|
|
}
|
|
|
|
func WatchPath(path string) config.WatchOption {
|
|
return config.SetWatchOption(pathKey{}, path)
|
|
}
|
|
|
|
type roleIDKey struct{}
|
|
|
|
func RoleID(role string) config.Option {
|
|
return config.SetOption(roleIDKey{}, role)
|
|
}
|
|
|
|
type secretIDKey struct{}
|
|
|
|
func SecretID(secret string) config.Option {
|
|
return config.SetOption(secretIDKey{}, secret)
|
|
}
|
|
|
|
type timeoutKey struct{}
|
|
|
|
func Timeout(td time.Duration) config.Option {
|
|
return config.SetOption(timeoutKey{}, td)
|
|
}
|