How to restrict a user to list only his own path in the kv2 secret engine if there is more number of users paths that exist? for example here is the scenario.
Secret along with path “secret/Deployments/satya.yelledi@gmail.com/lnx4395/passwd”
policy is like
path “secret/vaaDeployments/metadata/”
{
capabilities = [“list”]
}
path “secret/Deployments/metadata/{{identity.entity.aliases.auth_oidc_xxxxx.name}}/”
{
capabilities = [“list”]
}
path “secret/Deployments/data/{{identity.entity.aliases.auth_oidc_xxxxx.name}}/*”
{
capabilities = [“list”,“read”]
}
With this policy, OIDC users are able to see all other user’s paths but I wanted to restrict only to the user’s own path. I have tried removing
path “secret/vaaDeployments/metadata/”
{
capabilities = [“list”]
}
and then the user is unable to list his own secrets too.