Merge pull request #37585 from copumpkin/hologram-server-module
hologram-server module: add cache timeout option
This commit is contained in:
commit
7577356119
1 changed files with 9 additions and 2 deletions
|
@ -23,8 +23,9 @@ let
|
|||
account = cfg.awsAccount;
|
||||
defaultrole = cfg.awsDefaultRole;
|
||||
};
|
||||
stats = cfg.statsAddress;
|
||||
listen = cfg.listenAddress;
|
||||
stats = cfg.statsAddress;
|
||||
listen = cfg.listenAddress;
|
||||
cachetimeout = cfg.cacheTimeoutSeconds;
|
||||
});
|
||||
in {
|
||||
options = {
|
||||
|
@ -106,6 +107,12 @@ in {
|
|||
default = "";
|
||||
description = "Address of statsd server";
|
||||
};
|
||||
|
||||
cacheTimeoutSeconds = mkOption {
|
||||
type = types.int;
|
||||
default = 3600;
|
||||
description = "How often (in seconds) to refresh the LDAP cache";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue