Skip to content

Commit abea773

Browse files
skittsagikazarmark
authored andcommitted
Update references to bketelsen/crypt
Since #1218 crypt is provided by https://github.com/sagikazarmark/crypt Signed-off-by: Stephen Kitt <skitt@redhat.com>
1 parent f17acb4 commit abea773

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ flags, or environment variables.
420420

421421
Viper supports multiple hosts. To use, pass a list of endpoints separated by `;`. For example `http://127.0.0.1:4001;http://127.0.0.1:4002`.
422422

423-
Viper uses [crypt](https://github.com/bketelsen/crypt) to retrieve
423+
Viper uses [crypt](https://github.com/sagikazarmark/crypt) to retrieve
424424
configuration from the K/V store, which means that you can store your
425425
configuration values encrypted and have them automatically decrypted if you have
426426
the correct gpg keyring. Encryption is optional.
@@ -432,7 +432,7 @@ independently of it.
432432
K/V store. `crypt` defaults to etcd on http://127.0.0.1:4001.
433433

434434
```bash
435-
$ go get github.com/bketelsen/crypt/bin/crypt
435+
$ go get github.com/sagikazarmark/crypt/bin/crypt
436436
$ crypt set -plaintext /config/hugo.json /Users/hugo/settings/config.json
437437
```
438438

viper.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ func (v *Viper) AddRemoteProvider(provider, endpoint, path string) error {
624624
// To retrieve a config file called myapp.json from /configs/myapp.json
625625
// you should set path to /configs and set config name (SetConfigName()) to
626626
// "myapp".
627-
// Secure Remote Providers are implemented with github.com/bketelsen/crypt.
627+
// Secure Remote Providers are implemented with github.com/sagikazarmark/crypt.
628628
func AddSecureRemoteProvider(provider, endpoint, path, secretkeyring string) error {
629629
return v.AddSecureRemoteProvider(provider, endpoint, path, secretkeyring)
630630
}

0 commit comments

Comments
 (0)