-
Notifications
You must be signed in to change notification settings - Fork 709
[CORE-15019] Consider group membership for authz checks #29157
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
Merged
michael-redpanda
merged 15 commits into
redpanda-data:dev
from
michael-redpanda:gbac/core-14894/core-15019-group-authorizer
Jan 8, 2026
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
20d1a0b
security: Add groups() method to sasl_mechanism
michael-redpanda cbc7c84
security/oidc: Implement groups method
michael-redpanda ee219e8
k/server: Add get_groups method to connection_context
michael-redpanda 82d24e3
k/server: Add groups paramter to authorized_user method
michael-redpanda cf5bcea
security: Add groups to request_auth result
michael-redpanda eb27943
security: Add groups to authorized method
michael-redpanda d03d1c7
security: Created authz result for groups
michael-redpanda 8b2e920
security: Refactor authorization to check all effective principals
michael-redpanda f73689c
security: Handle groups in authz checks
michael-redpanda 8d5b860
dt: Add method to create group_mapper
michael-redpanda f3fb23e
dt: Add method to create groups in keycloak
michael-redpanda 372ba79
dt: Add method to add a service account to a group
michael-redpanda fd3ac57
proto: Add groups to ResolveOidcIdentityResponse
michael-redpanda 728e57d
admin/security: Implement groups
michael-redpanda 53d94c1
dt: Added basic group authz test
michael-redpanda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Not a huge fan of the ordering here, I feel like it should be
principal, groups, ..., but this overload set is tricky.