Skip to main content

Add your description here

Project description

RAJA

CI Integration Tests Coverage

Resource Authorization JWT Authority - Compile Cedar policies into JWT tokens for deterministic authorization.

What is RAJA?

RAJA compiles Cedar authorization policies into JWT tokens with explicit scopes. This means:

  • Authorization decisions are deterministic (same token + request = same result)
  • Tokens are transparent (you can see exactly what permissions are granted)
  • Enforcement is fast (simple scope checking, no policy evaluation)

Quick Start

Installation

git clone https://github.com/quiltdata/raja.git
cd raja
uv sync

Deploy to AWS (Control Plane)

# Deploy infrastructure
poe cdk-deploy --all

# Load Cedar policies
python scripts/load_policies.py

# Compile policies to scopes
export RAJA_API_URL="https://your-api.execute-api.us-east-1.amazonaws.com/prod"
python scripts/invoke_compiler.py

Control Plane UI

After deployment, open the API Gateway URL in your browser. The root path (/) renders a simple admin UI with live data from /principals, /policies, and /audit.

How It Works

Cedar Policies → Compiler → JWT Scopes → Library Enforcement
  1. Write Cedar policies that define who can do what
  2. Compiler converts policies into scope strings (e.g., Document:doc123:read)
  3. Token Service issues JWTs containing these scopes
  4. Applications validate tokens and check scopes locally

API Endpoints

When deployed to AWS, RAJA provides:

POST /compile - Compile Cedar policies into scopes

{}
 {"message": "Policies compiled successfully", "policies_compiled": 3}

POST /token - Issue a JWT token

{"principal": "alice"}
 {"token": "eyJ...", "scopes": ["Document:doc123:read"]}

GET /principals - List principals and their scopes

→ {"principals": [{"principal": "alice", "scopes": [...]}]}

**GET /policies** - List Cedar policies

```json
→ {"policies": [{"policyId": "..."}]}

GET /audit - View audit log entries


## Local Development

Use the Python library standalone (no AWS required):

```python
from raja import AuthRequest, create_token, enforce

# Create token with scopes
token = create_token(
    subject="alice",
    scopes=["Document:doc123:read"],
    secret="your-secret"
)

# Check authorization
decision = enforce(
    token_str=token,
    request=AuthRequest(resource_type="Document", resource_id="doc123", action="read"),
    secret="your-secret"
)
print(decision.allowed)  # True

Run Tests

poe test-unit      # Unit tests (no AWS)
poe test           # All tests
poe check-all      # Format, lint, typecheck

Scope Format

Scopes follow the pattern: {ResourceType}:{ResourceId}:{Action}

Examples:

  • Document:doc123:read - Read document doc123
  • Document:*:read - Read all documents
  • *:*:* - Full admin access

Project Structure

raja/
├── src/raja/           # Core Python library
├── lambda_handlers/    # AWS Lambda handlers
├── infra/             # CDK infrastructure
├── policies/          # Sample Cedar policies
└── tests/             # Test suite

Documentation

  • CLAUDE.md - Developer guide and architecture
  • specs/ - Design specifications
  • Module READMEs - See CLAUDE.md files in subdirectories

Contributing

See CLAUDE.md for development guidelines.

License

[License information to be added]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

raja-0.2.2.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

raja-0.2.2-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file raja-0.2.2.tar.gz.

File metadata

  • Download URL: raja-0.2.2.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for raja-0.2.2.tar.gz
Algorithm Hash digest
SHA256 38516c2819325952d55caa575838d9656c9434dc14901e02cf26b495f37b47ec
MD5 72e5a1b6fa8941a128fb6ffd824ec32c
BLAKE2b-256 d464248a623c25efebb705839bf7c054999cd60945073b7175da74f19c383216

See more details on using hashes here.

File details

Details for the file raja-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: raja-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 20.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.12

File hashes

Hashes for raja-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a6bb61d7d0318dbba80d7d43b047081cf02cdc29ff598e6bed89d4e4caf00ddf
MD5 9ee4b304c09c1eb1baa4dd07fabe1bdd
BLAKE2b-256 ee7884dd4e793775eb41e21894778168d30132eb9daabb4ec25ea3cf77faa0dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page