spring-vault
spring-vault copied to clipboard
Provides familiar Spring abstractions for HashiCorp Vault
In general, exception handlers should preserve the original exception so eventually, a full stack trace to the original offending code can be logged. This gives developer the ability to quickly...
It would be great if `ReactiveVaultTemplate` supports KV backend v2 similar to non-reactive version. As a workaround, it's possible to use the current client and just add `data` to the...
Hi all, From the vault documentation for creating token through API call, https://www.vaultproject.io/api-docs/auth/token#create-token they have `role_name` and `entity_alias`. However, current (2.3.2 version) `VaultTokenRequest` does not support these parameters. https://github.com/spring-projects/spring-vault/blob/2.3.2/spring-vault-core/src/main/java/org/springframework/vault/support/VaultTokenRequest.java Can...
Add the JWT authentication method to the library: [https://www.vaultproject.io/api-docs/auth/jwt](https://www.vaultproject.io/api-docs/auth/jwt)
Just a feature request to match Transit API in a better way Vault provides `batch_input` on `transit/%s/rewrap` like `encrypt` and `decrypt` Request and response match existing batch decrypt and encrypt...
For context, I'm using `TokenAuthentication` with `LifecycleAwareSessionManager`. The token used is a periodic token provided to the service at install-time. To provide resilience against network blips during the `LifecycleAwareSessionManager`'s renewal...
It looks like the implementation support is far behind current Hashicorp Vault functionality. Eg. see [https://www.vaultproject.io/api/secret/pki/index.html#read-ca-certificate](https://www.vaultproject.io/api/secret/pki/index.html#read-ca-certificate) Also the current functionality of generateCertificates is not feature complete - see [https://www.vaultproject.io/api/secret/pki/index.html#generate-certificate](https://www.vaultproject.io/api/secret/pki/index.html#generate-certificate) the...
Hello there. I'm Vault user. I need community help. Spring-Vault-Core does not return Convergent Encryption Information. Below is my environment. ``` Spring-Vault-Version: spring-vault-core:2.3.2 Vault-Version: 1.7.2 ``` `VaultOperations.opsForTransit().getKey("$keyName")` method in Spring-Vault-Core...
Is there a reason why there is not a reactive version of `VaultTransitOperations`? are you planning to add this?