mirror of
https://github.com/spf13/viper
synced 2024-12-22 19:47:01 +00:00
AddSecureRemoteProvider adds the secret keyring to the default provider struct
This commit is contained in:
parent
8e930a9714
commit
db7ff930a1
1 changed files with 4 additions and 3 deletions
7
viper.go
7
viper.go
|
@ -315,9 +315,10 @@ func (v *Viper) AddSecureRemoteProvider(provider, endpoint, path, secretkeyring
|
||||||
if provider != "" && endpoint != "" {
|
if provider != "" && endpoint != "" {
|
||||||
jww.INFO.Printf("adding %s:%s to remote provider list", provider, endpoint)
|
jww.INFO.Printf("adding %s:%s to remote provider list", provider, endpoint)
|
||||||
rp := &defaultRemoteProvider{
|
rp := &defaultRemoteProvider{
|
||||||
endpoint: endpoint,
|
endpoint: endpoint,
|
||||||
provider: provider,
|
provider: provider,
|
||||||
path: path,
|
path: path,
|
||||||
|
secretKeyring: secretkeyring,
|
||||||
}
|
}
|
||||||
if !v.providerPathExists(rp) {
|
if !v.providerPathExists(rp) {
|
||||||
v.remoteProviders = append(v.remoteProviders, rp)
|
v.remoteProviders = append(v.remoteProviders, rp)
|
||||||
|
|
Loading…
Reference in a new issue