Skip to content

Adoption & Ecosystem

Who uses it

The repository has no ADOPTERS file (checked at the documented commit). The named organizations below all come from the AWS Open Source Blog post announcing Cedar's move into the CNCF Sandbox, which lists current adopters and maintainers (src 3).

OrganisationUse caseSource
Amazon Web ServicesEngine behind Amazon Verified Permissions and AWS Verified Access; also used in Amazon Bedrock AgentCore Policy and AWS Systems ManagerAWS Open Source Blog (src 5), AWS Open Source Blog (src 3)
CloudflareAdopter named in the CNCF Sandbox announcementAWS Open Source Blog (src 3)
MongoDBAdopter named in the CNCF Sandbox announcementAWS Open Source Blog (src 3)
StrongDMAdopter named in the CNCF Sandbox announcementAWS Open Source Blog (src 3)
CloudinaryAdopter named in the CNCF Sandbox announcementAWS Open Source Blog (src 3)
Linux Foundation Janssen ProjectIntegration named in the CNCF Sandbox announcementAWS Open Source Blog (src 3)

Adoption signals

As observed via the GitHub API on 2026-06-27, cedar-policy/cedar had 1,571 stars, 160 forks, and 61 non-anonymous contributors (src 1). Releases are frequent: v4.11.2 shipped on 2026-06-22 (src 8). Cedar was accepted into the CNCF Sandbox on 2025-10-08 (src 2). These are early-stage signals; Cedar is a Sandbox project, not Incubating or Graduated.

Ecosystem

The surrounding ecosystem includes Amazon Verified Permissions, the managed service built on Cedar (src 5); the cedar-examples repository, including the TinyTodo demo app whose HTTP requests are authorized by Cedar (README:132); the cedar-language-server for editor completion and diagnostics (README:45); the cedar-wasm binding for JavaScript and TypeScript (README:46); the Linux Foundation Janssen Project integration (src 3); and a community Kubernetes integration, Kubernetes-Cedar-Authorizer, noted in the CNCF Sandbox announcement (src 3). The CNCF blog frames Cedar as a new approach to Kubernetes policy management for admission and authorization (src 6).

Alternatives

AlternativeDiffers by
Open Policy Agent (OPA) / RegoGeneral-purpose policy engine. Cedar's language is restricted to permit a sound, complete, decidable encoding, so it can be analyzed with the symbolic compiler; OPA covers a wider range of policy logic but does not offer that automated proof (src 3)
OpenFGARelationship-based access control in the Zanzibar tradition, centered on a graph of relations. Cedar expresses RBAC, ABAC, and ReBAC in one policy language (src 6)
SpiceDBZanzibar-style ReBAC served as a database. Cedar is an embeddable engine (crate, wasm, CLI) returning per-request decisions rather than a relationship store (src 6)

Pick Cedar when you want fine-grained authorization in a small embeddable engine and you value static analysis of policies. Pick OPA when you need a general rule engine for logic beyond what Cedar's language allows. Pick OpenFGA or SpiceDB when your model is dominated by large, evolving relationship graphs that you want stored and queried as data.