node-vault icon indicating copy to clipboard operation
node-vault copied to clipboard

Client for HashiCorp's Vault

Results 71 node-vault issues
Sort by recently updated
recently updated
newest added

Hello @kr1sp1n We're seeing Snyk reporting an issue with one of your dependencies ([email protected]). Looking at request-promise-native it looks like that library has been deprecated and will no longer be...

Fixes #163 Signed-off-by: Sidharth Vinod

When handling exceptions, It's not possible to use ApiResponseError type as it is not defined in the d.ts file.

It would be great to implement commands for namespace manipulation ([docs](https://www.vaultproject.io/api-docs/system/namespaces))

This package stopped working on latest vault k/v store and I think it has something to do with the new versioning feature in Vault. https://github.com/hashicorp/vault/issues/4281

enhancement

Here is what i try to do : ```typescript const vaultOptions: VaultOptions = { requestOptions: { headers: { 'X-Vault-Namespace': process.env.VAULT_NAMESPACE } } }; const vault = Vault(vaultOptions); vault.read('secret/my/secret'); ``` (Endpoint,...

Hi have this sample config ``` var options = { apiVersion: 'v1', // default endpoint: 'http://ssss:8200', // default token: 's.ssssssss' // optional client token; can be fetched after valid initialization...