forked from
tangled.org/core
Monorepo for Tangled — https://tangled.org
1# Allow full access to the spindle KV mount
2path "spindle/*" {
3 capabilities = ["create", "read", "update", "delete", "list"]
4}
5
6path "spindle/data/*" {
7 capabilities = ["create", "read", "update", "delete"]
8}
9
10path "spindle/metadata/*" {
11 capabilities = ["list", "read", "delete"]
12}
13
14# Allow listing mounts (for connection testing)
15path "sys/mounts" {
16 capabilities = ["read"]
17}
18
19# Allow token self-lookup (for health checks)
20path "auth/token/lookup-self" {
21 capabilities = ["read"]
22}