vaultrs
vaultrs copied to clipboard
An asynchronous Rust client library for the Hashicorp Vault API
Currently the `read` and `export` functions for the transit client do not support asymmetric keypairs. The read response fails to deserialize, as the response differs for symmetric vs asymmetric keys....
Our Vault uses certs signed by our CA and the client has the CA certs in the host trust store. I was able to pin rustify to 0.5.3 and things...
Hi! Thanks for the nice implementation of the vault client. I am planning to use this client for my project, but I failed to find [Okta](https://developer.hashicorp.com/vault/api-docs/auth/okta) auth method, which is...
VAULT_SKIP_VERIFY=1 was actually ENABLING verify while VAULT_SKIP_VERIFY=0 was SKIPPING verify. We want the opposite. I was able to `cargo build` but not `cargo test` in a `nix develop` shell, I...
Edit: I noticed that there's already similar code in here for jwt/oidc, so updating the issue accordingly. Hashicorp cloud has an oauth2 browser login method that I'd like to use....