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 deploy

# 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": ["S3Object:analytics-data/*:s3:GetObject", "S3Bucket:analytics-data:s3:ListBucket"]}

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

Query params:
  principal=<principal>
  action=<action>
  resource=<resource>
  start_time=<epoch-seconds>
  end_time=<epoch-seconds>
  limit=<1-200>
  next_token=<pagination-token>

Response fields include: timestamp, principal, action, resource, decision,
policy_store_id, request_id.

Local Development

Use the Python library standalone (no AWS required):

from raja import AuthRequest, create_token, enforce

# Create token with S3 scopes
token = create_token(
    subject="alice",
    scopes=[
        "S3Object:analytics-data/*:s3:GetObject",
        "S3Bucket:analytics-data:s3:ListBucket"
    ],
    secret="your-secret"
)

# Check authorization for S3 GetObject
decision = enforce(
    token_str=token,
    request=AuthRequest(
        resource_type="S3Object",
        resource_id="analytics-data/reports/2024.csv",
        action="s3:GetObject"
    ),
    secret="your-secret"
)
print(decision.allowed)  # True

Run Tests

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

Demo RAJEE Envoy S3 Proxy

To demonstrate RAJEE's Envoy proxy correctly routing S3 operations:

./poe demo

This runs verbose integration tests showing:

  • S3 operations (PUT, GET, DELETE, LIST) proxied through Envoy
  • Host header rewriting (Envoy endpoint → s3.amazonaws.com)
  • Multiple S3 API operations (GetObject, ListObjects, GetObjectAttributes, versioning)
  • Timing metrics for each operation
  • Complete request/response verification

Scope Format

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

Examples:

  • S3Object:analytics-data/reports/2024.csv:s3:GetObject - Read specific S3 object
  • S3Object:analytics-data/*:s3:GetObject - Read all objects in bucket
  • S3Bucket:analytics-data:s3:ListBucket - List bucket contents
  • *:*:* - 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.4.2.tar.gz (28.1 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.4.2-py3-none-any.whl (36.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: raja-0.4.2.tar.gz
  • Upload date:
  • Size: 28.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for raja-0.4.2.tar.gz
Algorithm Hash digest
SHA256 385648b7b9616f9bbf6e22884a6e5c3b02fa73aa84d6d45fcceed453378664d3
MD5 326efb7ee2074fb84ce54d87ebfa5d2c
BLAKE2b-256 a5e2d6dc459d595184a6226bb3a8e34cbb67a827bc1d40e60504bf06a2560d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for raja-0.4.2.tar.gz:

Publisher: release.yml on quiltdata/raja

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: raja-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for raja-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 71e2fa053bd5f81b46c27053169a9bdc4178188d9665a0f9e9b98b3c39b1f0af
MD5 7e3b0bafe8d6de7a25bf0badc755f2b1
BLAKE2b-256 c8ea920e7ecaf7fab3bc5fb5baa2936937ac4b4d7017a1750b2d35e18c979ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for raja-0.4.2-py3-none-any.whl:

Publisher: release.yml on quiltdata/raja

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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