allow create to create transit keys (#10706)

* allow create to create transit keys

* changelog
This commit is contained in:
Hridoy Roy 2021-01-15 12:20:32 -08:00 committed by GitHub
parent 0545ea4bb2
commit 4144ee0d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -99,6 +99,7 @@ return the public key for the given context.`,
Callbacks: map[logical.Operation]framework.OperationFunc{
logical.UpdateOperation: b.pathPolicyWrite,
logical.CreateOperation: b.pathPolicyWrite,
logical.DeleteOperation: b.pathPolicyDelete,
logical.ReadOperation: b.pathPolicyRead,
},

3
changelog/10706.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
transit: Allow create capability in policies to create transit keys
```