Skip to content

Commit

Permalink
Fix LIST issuers endpoint (#16830)
Browse files Browse the repository at this point in the history
* Fix LIST issuers endpoint ability to access, add a comment.

* Add changelog.
  • Loading branch information
kitography authored Aug 23, 2022
1 parent 0de67d5 commit 98ac457
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/logical/pki/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ func Backend(conf *logical.BackendConfig) *backend {
"issuer/+/pem",
"issuer/+/der",
"issuer/+/json",
"issuers",
"ocsp", // OCSP POST
"ocsp/*", // OCSP GET
"issuers/", // LIST operations append a '/' to the requested path
"ocsp", // OCSP POST
"ocsp/*", // OCSP GET
},

LocalStorage: []string{
Expand Down
3 changes: 3 additions & 0 deletions changelog/16830.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
secrets/pki: LIST issuers endpoint is now unauthenticated.
```

0 comments on commit 98ac457

Please sign in to comment.