let me know if you go through the tutorials and have any feedback on how to improve them
The docs are super useful, thanks!
Can you please share the policies attached to the token you are using?
I don’t have access to that, the vault server I’m playing with is not mine, just trying to learn new stuff. The closes info I can get is
vault read sys/internal/ui/resultant-acl --format=json
{
"request_id": "a9dbaa2a-bb69-ff18-fbf9-8157c08c5742",
"lease_id": "",
"lease_duration": 0,
"renewable": false,
"data": {
"chroot_namespace": "",
"exact_paths": {
"auth/token/lookup-self": {
"capabilities": [
"read"
]
},
"auth/token/renew-self": {
"capabilities": [
"update"
]
},
"auth/token/revoke-self": {
"capabilities": [
"update"
]
},
"identity/entity/id/d2794c98-4722-6a4e-a86a-0a41cc335f62": {
"capabilities": [
"read"
]
},
"identity/entity/name/entity_8d6b8c14": {
"capabilities": [
"read"
]
},
"sys/capabilities-self": {
"capabilities": [
"update"
]
},
"sys/control-group/request": {
"capabilities": [
"update"
]
},
"sys/internal/ui/resultant-acl": {
"capabilities": [
"read"
]
},
"sys/leases/lookup": {
"capabilities": [
"update"
]
},
"sys/leases/renew": {
"capabilities": [
"update"
]
},
"sys/renew": {
"capabilities": [
"update"
]
},
"sys/tools/hash": {
"capabilities": [
"update"
]
},
"sys/wrapping/lookup": {
"capabilities": [
"update"
]
},
"sys/wrapping/unwrap": {
"capabilities": [
"update"
]
},
"sys/wrapping/wrap": {
"capabilities": [
"update"
]
}
},
"glob_paths": {
"cubbyhole/": {
"capabilities": [
"create",
"delete",
"list",
"read",
"update"
]
},
"secret/data/test/storage/": {
"capabilities": [
"read"
]
}
"secret/metadata/test/storage/": {
"capabilities": [
"list",
"read"
]
},
"sys/tools/hash/": {
"capabilities": [
"update"
]
}
},
"root": false
},
"warnings": [
"Endpoint ignored these unrecognized parameters: [--format]"
]
}
Tho does it matter since vault token capabilities sys/internal/ui/mounts
returns deny
? I’m specifically couriouse why I’m getting deny
while I can read it. Is this somehow related to sys/internal/ui/mounts
being unauthenticated endpoint
?