update readme
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 5m11s

This commit is contained in:
2025-01-03 20:10:31 +01:00
parent 4e2a668d80
commit 5f9f0cdc19
5 changed files with 112 additions and 1 deletions

3
policy/secrets-read.hcl Normal file
View File

@ -0,0 +1,3 @@
path "secret/*" {
capabilities = [ "read" ]
}

View File

@ -0,0 +1,3 @@
path "secret/*" {
capabilities = [ "create", "read", "update", "delete", "list", "patch" ]
}

View File

@ -0,0 +1,20 @@
path "*" {
capabilities = ["list", "read"]
}
path "secrets/data/*" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "kv/data/*" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "secret/data/*" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "auth/token/create" {
capabilities = ["create", "read", "update", "list"]
}