This folder contains examples of Open Policy Agent (OPA).
Website: https://www.openpolicyagent.org/
You can find examples in the examples.
cd api
cd bundles
../../opa build example.rego
cd ..
docker compose -f docker-compose.yml up
curl --user alice:password localhost:5000/finance/salary/alice # will succeed
curl --user bob:password localhost:5000/finance/salary/alice # will succeed
curl --user bob:password localhost:5000/finance/salary/charlie # will not succeed
- Update policy and include HR department which can see salary of everyone. Build new policy and rerun the example.