We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ddbdeb commit 4392f03Copy full SHA for 4392f03
nixos/modules/services/security/cfssl.nix
@@ -164,6 +164,12 @@ in
164
];
165
description = "Log level (0 = DEBUG, 5 = FATAL).";
166
};
167
+
168
+ disable = lib.mkOption {
169
+ default = null;
170
+ type = lib.types.nullOr lib.types.commas;
171
+ description = "Endpoints to disable (comma-separated list)";
172
+ };
173
174
175
config = lib.mkIf cfg.enable {
@@ -218,6 +224,7 @@ in
218
224
(opt "tls-remote-ca" tlsRemoteCa)
219
225
(opt "db-config" dbConfig)
220
226
(opt "loglevel" (toString logLevel))
227
+ (opt "disable" disable)
221
228
222
229
}
223
230
(lib.mkIf (cfg.dataDir == options.services.cfssl.dataDir.default) {
0 commit comments