We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
abc"def'ghi$jkl%mno%pqr`stu
%keeper://<uid>/field/password%
name: env.TestCred value: %keeper://<uid>/field/password% type: Password
$a = ${env:TestCred} write-output ("$($a[0..100])")
% k e e p e r : / / <uid> / f i e l d / p a s s w o r d %
I should have seen the password I set in Keeper abc"def'ghi$jkl%mno%pqr`stu, but it did not resolve.
I have verified that if I remove one or both % symbols the password resolves successfully, so it is not an issue with the wrong UID or access.
Escape the % characters after retrieving secrets from Keeper, but before assigning them to parameter values by replacing % with %%.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to Repeat:
abc"def'ghi$jkl%mno%pqr`stu
.%keeper://<uid>/field/password%
as the valueExpected Result
I should have seen the password I set in Keeper
abc"def'ghi$jkl%mno%pqr`stu
, but it did not resolve.I have verified that if I remove one or both % symbols the password resolves successfully, so it is not an issue with the wrong UID or access.
Possible Solution
Escape the % characters after retrieving secrets from Keeper, but before assigning them to parameter values by replacing % with %%.
The text was updated successfully, but these errors were encountered: