Cedar Agent
What is Cedar-Agent?
Cedar-Agent is an HTTP server designed to efficiently manage a policy store and a data store. It provides a seamless integration with Cedar, a language for defining permissions as policies.
With Cedar-Agent, you can easily control and monitor access to your application's resources by leveraging Cedar policies. If you are not familiar with Cedar, we encourage you to visit the Cedar website and playground to learn more about it.
Learn more reading these blog posts:
Policy Store Management
Cedar-Agent includes a store that allows you to create, retrieve, update, and delete policies. These policies define who should have access to what resources within your application. The policy store provides a centralized and flexible way to manage permissions, enabling fine-grained control over user access.
Featured Policy Stores :
- In-Memory
- Redis
Data Store Management
In addition to the policy store, Cedar-Agent also provides an in-memory data store. This data store allows you to store and manage your application's data efficiently. By integrating the data store with Cedar-Agent, you can perform authorized checks on the stored data based on incoming HTTP requests.
Featured Data Stores :
- In-Memory
- Redis
Authorization Checks
One of the key features of Cedar-Agent is its ability to perform authorization checks on stored policies and data.
By evaluating the Cedar policies, Cedar-Agent ensures that each user's access is restricted to the resources they are permitted to access.
Authorization checks are performed based on the incoming HTTP requests, providing an easy-to-use robust and secure mechanism for controlling access to your application.
Cedar-Agent offers a comprehensive solution for managing policies, data, and authorization checks within your application. With its seamless integration with Cedar and its robust HTTP server capabilities, Cedar-Agent empowers you to enforce fine-grained access control and protect your resources effectively.
How to Use
To use Cedar-Agent, follow the steps below:
Prerequisites
Before proceeding, ensure that you have Rust and Cargo installed on your system. If you don't have them installed, you can visit the official Rust installation page and follow the instructions specific to your operating system.
Clone the Repository
Start by cloning the Cedar-Agent repository to your local machine:
git clone https://github.com/permitio/cedar-agent.git
cd cedar-agent
Build
To build Cedar-Agent, use the following command:
cargo build
Configuration
Cedar Agent configuration is available using environment variables and command line arguments.
- The port on which the Cedar Agent will listen for incoming HTTP requests. Defaults to
8180
.
PORT
environment variable.
--port
,-p
command line argument. - Authentication token to enforce using the
Authorization
header. Defaults toNone
.
AUTHENTICATION
environment variable.
--authentication
,-a
command line argument. - The address of the HTTP server. Defaults to
127.0.0.1
.
ADDR
environment variable.
--addr
command line argument. - The log level to filter logs. Defaults to
info
.
LOG_LEVEL
environment variable.
--log-level
,-l
command line argument.
command line arguments take precedence over environment variables when configuring the Cedar Agent
Run
There are several ways to run the Cedar Agent
Run with cargo
To run Cedar-Agent, use the following command:
cargo run
to add any arguments to the command append them after --
, for example:
cargo run -- --port 8080
Run the binary
To run the binary, make sure you've done the build step, and run this command:
./target/debug/cedar-agent
To check the arguments you can pass to the binary, run:
./target/debug/cedar-agent --help
Run with docker
To execute the Cedar Agent docker image, use the following command:
docker run permitio/cedar-agent
Test
To test Cedar-Agent, use the following command:
cargo test
API Endpoints
After running Cedar-Agent, the application provides comprehensive API documentation and endpoint schema using Rapidoc and Swagger UI, that you can access through the following routes:
- http://localhost:8180/rapidoc: Visit this route in your web browser to explore the interactive API documentation powered by the Rapidoc tool. It provides detailed information about each endpoint, including their parameters, request bodies, and response structures.
- http://localhost:8180/swagger-ui: Access this route to interact with the Swagger UI, which offers a user-friendly interface to browse the API endpoints. It presents a visual representation of the available routes, along with their descriptions, request and response schemas, and example requests.
Quickstart
-
Store policy using this command:
curl -X PUT -H "Content-Type: application/json" -d @./examples/policies.json http://localhost:8180/v1/policies
-
Store data using this command:
curl -X PUT -H "Content-Type: application/json" -d @./examples/data.json http://localhost:8180/v1/data
-
Perform IsAuthorized check using this command:
curl -X POST -H "Content-Type: application/json" -d @./examples/allowed_authorization_query.json http://localhost:8180/v1/is_authorized
The response is:
{ "decision": "Allow", "diagnostics": { "reason": [ "admins-policy" ], "errors": [] } }
As you can see the user is allowed to access the resource because policy id
admins-policy
permits it.
Check for a user that is not allowed to access the resource:curl -X POST -H "Content-Type: application/json" -d @./examples/denied_authorization_query.json http://localhost:8180/v1/is_authorized
The response is:
{ "decision": "Deny", "diagnostics": { "reason": [], "errors": [] } }
As you can see the user is denied access to the resource because no policy allows this request.
For more details about the performed requests you can check the examples directory
Community
Come talk to us about Cedar Agent, or authorization in general - we would love to hear from you
You can raise questions and ask for features to be added to the road-map in our GitHub discussions, report issues in GitHub issues, join our Slack community to chat about authorization, open-source, realtime communication, tech, or anything else!
If you are using our project, please consider giving us a
Contributing
If you encounter any issues or have suggestions for improvement, please open an issue, on the Cedar-Agent GitHub repository to get assistance from the community.
- Pull requests are welcome! (please make sure to include passing tests and docs)
- Prior to submitting a PR - open an issue on GitHub, or make sure your PR addresses an existing issue well.