-
Notifications
You must be signed in to change notification settings - Fork 9
Beta helper #5450
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
Beta helper #5450
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1169,7 +1169,7 @@ | |
| "relationship-type:*", | ||
| "end-one-entity-type:AIModel", | ||
| "end-one-entity-classification:*", | ||
| "end-one-entity:{entity}", | ||
| "end-one-entity:*", | ||
| "end-one-entity:{entity}/*", | ||
|
|
||
| "end-two-entity-type:Catalog", | ||
|
|
@@ -1199,7 +1199,7 @@ | |
|
|
||
| "end-two-entity-type:AIModel", | ||
| "end-two-entity-classification:*", | ||
| "end-two-entity:{entity}", | ||
| "end-two-entity:*", | ||
| "end-two-entity:{entity}/*" | ||
| ], | ||
| "actions": ["add-relationship", "remove-relationship"] | ||
|
|
@@ -1209,7 +1209,7 @@ | |
| "policyType": "ACCESS", | ||
| "description": "Create/delete process to update datasets for this AIModel", | ||
| "resources": [ | ||
| "entity:default/ai/dataset/*", | ||
| "entity:*", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Policy Pattern Inconsistency Causes Access IssuesPolicy resource patterns were inconsistently broadened from specific entities (e.g., There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Access Control Policy Too PermissiveThe access control policy for entity create/delete operations is overly permissive. The resource changed from |
||
| "entity-type:Process", | ||
| "entity-classification:*" | ||
| ], | ||
|
|
||
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.
Bug: Redundant Wildcard Patterns in Policies
Several policy definitions now include both a broad wildcard
*and a more specific{entity}/*pattern for the same entity type. This makes the{entity}/*pattern redundant, as the*wildcard already covers all entities, leading to an inconsistent resource specification.