Hello,
When user entering credentials in Hashicorp Vault UI, how do you prevent the user from extending the path?
My ACL Police:
path “provision/" {
capabilities = [“list”]
}
path "provision/data/+/azrscmbi/dev” {
capabilities = [“create”, “read”, “update”, “patch”, “delete”, “list”]
}
Here, the user can extend the path on his own. At the same time, I want him to be able to store credentials on the path which I provide in the policy. However, I don’t want him to be able to extend the path. The user would be allowed to create a file for storing the key and value, according to the path I specify in the policy
When I remove the Create from the capabilities, user was unable to create a file to store the key and value. My goal is to restrict only the creation of folders.
Thanks!!