depot/ops/vault/cfg/authbackend-approle.nix

15 lines
253 B
Nix
Raw Permalink Normal View History

2022-03-14 23:34:33 +00:00
{ ... }:
{
imports = [ ./module-authbackend.nix ];
config.my.authBackend.approle = {
tune = {
default_lease_ttl = "1h";
max_lease_ttl = "1h";
listing_visibility = "hidden";
token_type = "default-service";
};
};
}