Add resource-scoped RBAC support for isolated role assignments#1590
Closed
Add resource-scoped RBAC support for isolated role assignments#1590
Conversation
|
|
Co-authored-by: hsluoyz <3787410+hsluoyz@users.noreply.github.com>
Co-authored-by: hsluoyz <3787410+hsluoyz@users.noreply.github.com>
Co-authored-by: hsluoyz <3787410+hsluoyz@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Implement Casbin RBAC with resource scope support
Add resource-scoped RBAC support for isolated role assignments
Nov 20, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Users need Azure RBAC-like functionality where the same role can be assigned to different users scoped to specific resources, preventing permission leakage. Currently, assigning the same role to multiple users grants them identical access to all resources.
Solution
Leverage Casbin's existing 3-parameter grouping (
g = _, _, _) to scope roles by resource:Model matcher:
Multi-tenant variant
For tenant-scoped resources, concatenate scope in grouping:
Changes
TestRBACWithResourceScope,TestRBACWithResourceScopeAndTenant,TestRBACWithResourceScopeMultitenancyRBAC_WITH_RESOURCE_SCOPE.mdwith usage patterns and Azure RBAC comparisonrbac_with_resource_scope_demo.goAPI compatibility
Standard RBAC APIs work by passing scope as domain parameter:
No core library changes required—uses existing multi-domain role manager capabilities.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.