授权本机 SPIFFE 身份访问开发服务
yaml / yaml (pull_request) Successful in 12s
terraform / validate (pull_request) Successful in 32s

This commit is contained in:
2026-09-16 17:06:27 +00:00
parent 7703b5d21e
commit 64b1acd6c3
5 changed files with 73 additions and 0 deletions
@@ -0,0 +1,19 @@
# Local development identity. This policy deliberately permits normal KV v2
# reads and writes but excludes soft-delete, metadata deletion, permanent
# version destruction, auth administration, and privileged operations.
path "kv/data/*" {
capabilities = ["create", "read", "update"]
}
path "kv/metadata" {
capabilities = ["read", "list"]
}
path "kv/metadata/*" {
capabilities = ["read", "list"]
}
# Sign disposable SSH public keys for short-lived development access.
path "ssh-client-signer/sign/ai-agent" {
capabilities = ["create", "update"]
}