-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
openapi: Fix logic for labeling unauthenticated/sudo paths #19600
Conversation
Looks like I mislead you a little about |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ty for the tests!
All good 😄, I was considering amending the PathManager to support the |
The previous logic for matching unauthenticated & sudo paths in OpenAPI did not take into account the
+
wildcard, so some of the PKI paths were skipped.With new logic, these are the new unauthenticated paths introduced for builtin plugins:
The list of "sudo" paths is unaffected by this PR for builtin plugins.
Resolves: #19581, VAULT-14576