nixos/{consul-template,vault-agent}: drop `template` sub-option (#431031)

authored by

Emily and committed by
GitHub
137414cf 834c619c

-17
-17
nixos/modules/services/security/vault-agent.nix
··· 58 58 Path to use for the pid file. 59 59 ''; 60 60 }; 61 - 62 - template = lib.mkOption { 63 - default = null; 64 - type = with types; nullOr (listOf (attrsOf anything)); 65 - description = 66 - let 67 - upstreamDocs = 68 - if flavour == "vault-agent" then 69 - "https://developer.hashicorp.com/vault/docs/agent/template" 70 - else 71 - "https://github.com/hashicorp/consul-template/blob/main/docs/configuration.md#templates"; 72 - in 73 - '' 74 - Template section of ${flavour}. 75 - Refer to <${upstreamDocs}> for supported values. 76 - ''; 77 - }; 78 61 }; 79 62 }; 80 63