-
Notifications
You must be signed in to change notification settings - Fork 10
Update jaas reference doc #125
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
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 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -152,29 +152,40 @@ Permissions in JIMM consist of an object, a relation and a target object. These | |||||||||||
|
|
||||||||||||
| The object and target object must be of the form <tag>-<objectname> or <tag>-<object-uuid> E.g. “user-Alice” or “controller-MyController” | ||||||||||||
|
|
||||||||||||
| Certain reserved tags exist to denote specific resource types: - The user-everyone@external tag represents all users. - The controller-jimm tag represents the JIMM controller itself. | ||||||||||||
|
|
||||||||||||
| -f Read from a file where filename is the location of a JSON encoded file of the form: [ { “object”:“user-mike”, “relation”:“member”, “target_object”:“group-yellow” }, { “object”:“user-alice”, “relation”:“member”, “target_object”:“group-yellow” } ] | ||||||||||||
|
|
||||||||||||
| Certain constraints apply when creating/removing permissions, namely: Object may be one of: | ||||||||||||
| Certain constraints apply when creating/removing permissions, namely: Resources may be one of: | ||||||||||||
|
|
||||||||||||
| :: | ||||||||||||
|
|
||||||||||||
| user tag = "user-<name>" | ||||||||||||
| group tag = "group-<name>" | ||||||||||||
| role tag = "role-<name>" | ||||||||||||
|
||||||||||||
| controller tag = "controller-<name>" | ||||||||||||
| model tag = "model-<name>" | ||||||||||||
| application offer tag = "offer-<name>" | ||||||||||||
| cloud tag = "cloud-<name>" | ||||||||||||
|
||||||||||||
| application-offer tag = "applicationoffer-<name>" | ||||||||||||
|
|
||||||||||||
| If target_object is a group, the relation can only be: | ||||||||||||
|
|
||||||||||||
| :: | ||||||||||||
|
|
||||||||||||
| member | ||||||||||||
|
|
||||||||||||
| If target_object is a role, the relation can only be: | ||||||||||||
|
|
||||||||||||
| :: | ||||||||||||
|
|
||||||||||||
| assignee | ||||||||||||
|
|
||||||||||||
| If target_object is a controller, the relation can be one of: | ||||||||||||
|
|
||||||||||||
| :: | ||||||||||||
|
|
||||||||||||
| loginer | ||||||||||||
| audit_log_viewer (only relevent for the JIMM controller) | ||||||||||||
|
||||||||||||
| audit_log_viewer (only relevent for the JIMM controller) | |
| audit_log_viewer (only relevant for the JIMM controller) |
Copilot
AI
Dec 17, 2025
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.
The reserved tags description appears to be on a single line without proper formatting. The list items should be separated (either by line breaks or proper bullet formatting) to improve readability. Currently, the dashes are used as separators in running text rather than as list markers.
| Certain reserved tags exist to denote specific resource types: - The user-everyone@external tag represents all users. - The controller-jimm tag represents the JIMM controller itself. | |
| Certain reserved tags exist to denote specific resource types: | |
| - The ``user-everyone@external`` tag represents all users. | |
| - The ``controller-jimm`` tag represents the JIMM controller itself. |
Copilot
AI
Dec 17, 2025
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.
HTML entity encoding issue: "<" and ">" are being used instead of angle brackets. This should be "role-<name>" which will render as "role-" in the final output, but the inconsistency with other tags on lines 1604, 1607, and 1608 which use actual angle brackets suggests this might be unintended encoding.
Copilot
AI
Dec 17, 2025
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.
HTML entity encoding issue: "<" and ">" are being used instead of angle brackets. This should be "cloud-<name>" which will render as "cloud-" in the final output, but the inconsistency with other tags on lines 1604, 1607, and 1608 which use actual angle brackets suggests this might be unintended encoding.
Copilot
AI
Dec 17, 2025
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.
The word "relevent" is misspelled. It should be "relevant".
| audit_log_viewer (only relevent for the JIMM controller) | |
| audit_log_viewer (only relevant for the JIMM controller) |
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.
The reserved tags description appears to be on a single line without proper formatting. The list items should be separated (either by line breaks or proper bullet formatting) to improve readability. Currently, the dashes are used as separators in running text rather than as list markers.