terraform-vault/policies/transit/keys/admin.hcl
Ben Vincent 85d81fef72 feat: add transit engine
- add transit engine
- add policies to manage keys, encryption and decryption
- add ability to create keys to tf_vault approle
2025-11-15 15:55:51 +11:00

9 lines
250 B
HCL

# Allow management of keys (create, update, delete, list, and read)
path "transit/keys/*" {
capabilities = ["create", "update", "delete", "read", "list"]
}
# Allow listing of available keys
path "transit/keys" {
capabilities = ["read", "list"]
}