You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -846,14 +855,6 @@ Example: place the following in your ``~/.bashrc``
846
855
SOPS_GPG_EXEC = 'your_gpg_client_wrapper'
847
856
848
857
849
-
Specify a different GPG key server
850
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
851
-
852
-
By default, SOPS uses the key server ``keys.openpgp.org`` to retrieve the GPG
853
-
keys that are not present in the local keyring.
854
-
This is no longer configurable. You can learn more about why from this write-up: `SKS Keyserver Network Under Attack <https://gist.github.com/rjhansen/67ab921ffb4084c865b3618d6955275f>`_.
Copy file name to clipboardExpand all lines: cmd/sops/main.go
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -78,12 +78,14 @@ func main() {
78
78
79
79
keyserviceFlags:= []cli.Flag{
80
80
cli.BoolTFlag{
81
-
Name: "enable-local-keyservice",
82
-
Usage: "use local key service",
81
+
Name: "enable-local-keyservice",
82
+
Usage: "use local key service",
83
+
EnvVar: "SOPS_ENABLE_LOCAL_KEYSERVICE",
83
84
},
84
85
cli.StringSliceFlag{
85
-
Name: "keyservice",
86
-
Usage: "Specify the key services to use in addition to the local one. Can be specified more than once. Syntax: protocol://address. Example: tcp://myserver.com:5000",
86
+
Name: "keyservice",
87
+
Usage: "Specify the key services to use in addition to the local one. Can be specified more than once. Syntax: protocol://address. Example: tcp://myserver.com:5000",
0 commit comments