Remove escapeShellArg in reading secret source
Sometimes secret source contains env vars, which are incorrectly escaped.
This commit is contained in:
parent
96f574bbff
commit
b452edc74c
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ let
|
||||||
if isNull transform then x: x else transform;
|
if isNull transform then x: x else transform;
|
||||||
in
|
in
|
||||||
lib.attrsets.nameValuePair (secretName secret.name) (
|
lib.attrsets.nameValuePair (secretName secret.name) (
|
||||||
(t secret) "$(cat ${escapeShellArg (toString secret.source)})"
|
(t secret) "$(cat ${toString secret.source})"
|
||||||
);
|
);
|
||||||
|
|
||||||
replaceSecretsScript =
|
replaceSecretsScript =
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue