Skip to content

Instantly share code, notes, and snippets.

@chumaknadya
Last active November 12, 2020 15:51
Show Gist options
  • Save chumaknadya/a784b7d078209b0f072de9d955819390 to your computer and use it in GitHub Desktop.
Save chumaknadya/a784b7d078209b0f072de9d955819390 to your computer and use it in GitHub Desktop.
# Access system health status
path "sys/health" {
capabilities = ["read", "list"]
}
# Renew tokens
path "auth/token/renew" {
capabilities = [ "update" ]
}
# Lookup tokens
path "auth/token/lookup" {
capabilities = [ "update" ]
}
# Manage HD Wallet secrets
path "kv/opendax_hdwallet_seed" {
capabilities = ["create", "read"]
}
path "kv/opendax_hdwallet_index" {
capabilities = ["create", "read", "update"]
}
path "kv/opendax_hdwallet_footprint" {
capabilities = ["create", "read", "update"]
}
path "kv/opendax_hdwallet_key_*" {
capabilities = ["create", "read", "update"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment