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
Gem version latest. Cannot write secrets to vault. According to documentation write example:
Vault.logical.write("secret/bacon", delicious: true, cooktime: "11")
shows error "* no data provided"
but If im reading secret from :
secret = Vault.logical.read("secret/bacon_old") Vault.logical.write("secret/bacon", secret.data)
its working well.
The text was updated successfully, but these errors were encountered:
Vault.logical.write("secret/data/bacon", data: {delicious: true, cooktime: "11"})
The docs need to be update to match kv-v2
Sorry, something went wrong.
No branches or pull requests
Gem version latest.
Cannot write secrets to vault.
According to documentation write example:
Vault.logical.write("secret/bacon", delicious: true, cooktime: "11")
shows error "* no data provided"
but If im reading secret from :
secret = Vault.logical.read("secret/bacon_old")
Vault.logical.write("secret/bacon", secret.data)
its working well.
The text was updated successfully, but these errors were encountered: