You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the code that shims data/ into Vault KV v2 paths only checks if the path starts with data/ or metadata/. (code)
This effectively means that only these paths are accessible within Vault KV v2 secrets engines.
For example, attempting to access a path starting with subkeys/ (Vault API Docs) will result in the shim transforming the path to data/subkeys/..., missing the desired endpoint.
The code that shims data/ into Vault KV v2 paths needs to check for every possible valid prefix before deciding to shim in data/.
The text was updated successfully, but these errors were encountered:
Currently, the code that shims
data/
into Vault KV v2 paths only checks if the path starts withdata/
ormetadata/
. (code)This effectively means that only these paths are accessible within Vault KV v2 secrets engines.
For example, attempting to access a path starting with
subkeys/
(Vault API Docs) will result in the shim transforming the path todata/subkeys/...
, missing the desired endpoint.The code that shims
data/
into Vault KV v2 paths needs to check for every possible valid prefix before deciding to shim indata/
.The text was updated successfully, but these errors were encountered: