Skip to main content

Welcome to Nabla

Nabla transforms your infrastructure-as-code into compliance evidence. Generate FedRAMP, CMMC, and FIPS assessments automatically from your Terraform state files—no manual documentation required.

Get started in minutes

Start generating compliance evidence with a single API call.

Key Features

Transform compliance workflows with automated evidence generation.

Supported Frameworks

Map your infrastructure to industry-standard security controls.

How It Works

# Encode your Terraform state
STATE_CONTENT=$(cat terraform.tfstate | base64)

# Generate compliance evidence
curl -X POST https://api.usenabla.com/v1/fedramp \
  -H "X-Customer-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d "{
    \"name\": \"Production Assessment\",
    \"format\": \"oscal\",
    \"source_type\": \"terraform_state\",
    \"source_content\": \"$STATE_CONTENT\"
  }"

View API Reference

Explore the complete API documentation and schema definitions.