OpenBao/Vault
Requirementes
bao server -dev -dev-root-token-id="dev-only-token" # Allow tokens to query themselves
path "auth/token/lookup-self" {
capabilities = ["read"]
}
# Allow tokens to renew themselves
path "auth/token/renew-self" {
capabilities = ["update"]
}
# Allow tokens to revoke themselves
path "auth/token/revoke-self" {
capabilities = ["update"]
}
# Configure the actual secrets the token should have access to
path "shared/data/kv/creds" {
capabilities = ["read"]
}
Last updated
Was this helpful?