Skip to content

Commit

Permalink
tweak readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeurerkellner committed Jun 12, 2024
1 parent bb86d17 commit 23d7537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ raise AccessControlViolation("unauthorized access", user=input.username, chunk=c

This RBAC policy ensures that only users with the correct roles can access the data retrieved by the agent. If they cannot, the analyzer will raise an `AccessControlViolation` error, which can then be handled by the agent (e.g. by filtering out the unauthorized chunks) or raise an alert to the system administrator.

The shown policy is _parameterized_, where `input.user` is a parameter provided depending on the evaluation context. For instance, in this case the policy is only violated if `user` is `alice`, but not if `user` is `bob`. This allows for more policies that are aware of the authorization context and can be used to enforce fine-grained access control policies.
The shown policy is _parameterized_, where `input.user` is a parameter provided depending on the evaluation context. For instance, in this case the policy is only violated if `user` is `alice`, but not if `user` is `bob`. This allows for policies that are aware of the authorization context and can be used to enforce fine-grained access control policies.

## Documentation

Expand Down

0 comments on commit 23d7537

Please sign in to comment.