update readme
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 5m11s
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 5m11s
This commit is contained in:
3
policy/secrets-read.hcl
Normal file
3
policy/secrets-read.hcl
Normal file
@ -0,0 +1,3 @@
|
||||
path "secret/*" {
|
||||
capabilities = [ "read" ]
|
||||
}
|
3
policy/secrets-readwrite.hcl
Normal file
3
policy/secrets-readwrite.hcl
Normal file
@ -0,0 +1,3 @@
|
||||
path "secret/*" {
|
||||
capabilities = [ "create", "read", "update", "delete", "list", "patch" ]
|
||||
}
|
20
policy/secrets-terraform.hcl
Normal file
20
policy/secrets-terraform.hcl
Normal 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"]
|
||||
}
|
Reference in New Issue
Block a user