diff options
author | sterni <sternenseemann@systemli.org> | 2022-05-22T21·51+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-05-25T15·00+0000 |
commit | 03d198631645ba3013e6e16bdf26a327cd51ccf7 (patch) | |
tree | a184cbd1287f5269068a43b76892b34b3deb5154 /ops/modules/oauth2_proxy.nix | |
parent | c55f61cd9b000607edd03c99c94c283fd968c4a6 (diff) |
feat(3p/agenix): update to 2022-05-16 and add to niv r/4112
The new version brings the new secretsDir setting which means we no longer have to hardcode /run/agenix everywhere. Change-Id: I4b579d7233d315a780d7671869d5d06722d769fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/5646 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'ops/modules/oauth2_proxy.nix')
-rw-r--r-- | ops/modules/oauth2_proxy.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/oauth2_proxy.nix b/ops/modules/oauth2_proxy.nix index 58b3a222a80d..e92572365d52 100644 --- a/ops/modules/oauth2_proxy.nix +++ b/ops/modules/oauth2_proxy.nix @@ -37,7 +37,7 @@ in secretsFile = lib.mkOption { type = lib.types.str; description = "EnvironmentFile from which to load secrets"; - default = "/run/agenix/oauth2_proxy"; + default = config.age.secretsDir + "/oauth2_proxy"; }; }; |