Created
March 16, 2020 18:18
-
-
Save sdeoras/bbe937028cf8e3778747d506da69a91d to your computer and use it in GitHub Desktop.
Admin policy in vault
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
path "auth/userpass/users/+" { | |
capabilities = ["create", "read", "delete", "update", "list"] | |
allowed_parameters = { | |
"token-policies" = ["default", "policies/*"] | |
"policies" = ["default", "policies/*"] | |
"*" = [] | |
} | |
} | |
path "auth/userpass/users/+/policies" { | |
capabilities = ["create", "read", "delete", "update", "list"] | |
allowed_parameters = { | |
"token-policies" = ["default", "policies/*"] | |
"policies" = ["default", "policies/*"] | |
"*" = [] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment