Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions extension/privilege_zone_rules/tier0-assigned-computers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Jamf: Tier Zero Assigned Computers",
"zone": "Tier Zero",
"description": "Adds Jamf computers to Tier Zero that have assigned users matching Tier Zero principal attributes.",
"cypher": "MATCH (q:jamf_Computer) - [:jamf_AssignedUser] -> () - [] -> (l)\nWHERE l.tier = 0\nRETURN DISTINCT q",
"enabled": true,
"allow_disable": true
}
4 changes: 2 additions & 2 deletions extension/privilege_zone_rules/tier0-principals.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Jamf: Tier Zero Principals",
"zone": "Tier Zero",
"description": "Accounts and group principals with 'Full Access' administrator privileges in the tenant and 'SSO' configuration if enabled.",
"cypher": "MATCH (n)\nWHERE n.tier = 0\nRETURN n",
"description": "Accounts and group principals with 'Full Access' administrator privileges in the tenant, the 'jamf_Tenant' root node, and 'SSO' configuration if enabled.",
"cypher": "MATCH (n:jamf)\nWHERE n.tier = 0\nRETURN n",
"enabled": true,
"allow_disable": true
}
Loading