Skip to content

Instantly share code, notes, and snippets.

@francium-lupe
Last active August 29, 2023 13:56
Show Gist options
  • Save francium-lupe/42ac1610bbb12a00a615bf37e36c63e8 to your computer and use it in GitHub Desktop.
Save francium-lupe/42ac1610bbb12a00a615bf37e36c63e8 to your computer and use it in GitHub Desktop.
ReBAC 2
actor User {}
global {
roles = ["admin"];
}
resource Vehicle {
permissions = ["security", "update", "updateAuthorizedUsers"];
roles = ["admin", "manager", "driver"];
relations = { currentlyBookedBy: User };
"driver" if "currentlyBookedBy";
"security" if "driver";
"update" if "manager";
"updateAuthorizedUsers" if "admin";
"admin" if global "admin";
"manager" if "admin";
"driver" if "manager";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment