-
Hi Team, I hope you can help me with below issue: Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, /bin/vault kv put secret/client-secret content='xxxxxxxxxx' |
Beta Was this translation helpful? Give feedback.
Hi,
with the help of @wolf4ood I was able to locate the issue - there was $ symbol int the client_secret, which is removed when using vault cli. In order to solve the problem the character needs to be espaced. The easiest way is to surround the secret value with single quotes, e.g:
"
....
/bin/vault kv put secret/client-secret content='xxxxxxxxxx'
"