Analyze Terraform plans and receive cost impact reports directly in your Pull Requests. Built for FinOps and DevOps teams.
Get Started NowIntercepts native tfplan JSON to extract resource changes with military precision.
Hybrid async AI suggests rightsizing and modernization strategies to save up to 40%.
Visual history of all cost impacts over time. Glassmorphic UI with interactive trends.
Automate cost reporting in your CI/CD pipeline
name: CostDiff Analysis
on: [pull_request]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Terraform Plan
run: terraform plan -out=tfplan && terraform show -json tfplan > plan.json
- name: CostDiff API
run: |
curl -X POST https://api.costdiff.io/v1/analyze \
-H "X-API-Key: ${{ secrets.COSTDIFF_API_KEY }}" \
-d @plan.json