chiefy / vaulted

nodejs based wrapper for HashiCorp's Vault HTTP API
https://chiefy.github.io/vaulted
MIT License
47 stars 6 forks source link

How to read secrets from custom mount points (not /secrets)? #99

Closed Ctesias closed 6 years ago

Ctesias commented 7 years ago

Hi,

If I mount a custom generic backend:

mount -path="/tenant1" generic or myVault.createMount({id: 'tenant1', body: {type: 'generic'}})

How do I then do subsequent reads to that path? do I need to mount all my custom mounts as "/secret/tenant1" in order to get them to work?

Thanks.