feat: add kubernetes auth engine

- add kubernetes authentication
- add policy to manage kubernetes auth engine roles/config
This commit is contained in:
2025-11-15 10:50:17 +11:00
parent 9f4b77a765
commit bc9b4eebdc
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,14 @@
# Allow configuration of Kubernetes authentication backend
path "auth/kubernetes/config" {
capabilities = ["create", "update", "read", "delete"]
}
# Allow management of Kubernetes auth roles
path "auth/kubernetes/role/*" {
capabilities = ["create", "update", "read", "delete", "list"]
}
# Allow listing auth/kubernetes/role
path "auth/kubernetes/role" {
capabilities = ["list"]
}