Configures Checkov for IaC security scanning across Terraform, CloudFormation, Kubernetes, Helm, ARM, Serverless, AWS CDK - `pip install checkov`, custom Python checks, SARIF / JUnit output, and `--baseline` gating so CI fails only on new findings in legacy code. Use for the broadest built-in rule set with Python custom checks; for Terraform-only scanning use tfsec-policy, for wider platform breadth (OpenAPI / Pulumi / Crossplane) use kics-policy, and for a consolidated new-project scanner use trivy-config.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Per checkov-home, supported frameworks: Terraform and Terraform plan, CloudFormation, Kubernetes, Helm, ARM Templates, Serverless framework, AWS CDK. Checkov is the broadest IaC security scanner - covers more frameworks than tfsec (Terraform-only) or KICS (similar coverage but Checkov has more built-in checks per release).
requirements-dev.txt
for CI determinism (Step 1).checkov -d . locally, narrowing frameworks with
--framework when the repo mixes IaC types (Step 2).checkov:skip= comments (Step 4)..checkov.baseline so CI fails only on new findings,
then wire the scan into CI with SARIF upload (Steps 7-8).pip install checkov
checkov --versionPer project (recommended for CI determinism):
echo 'checkov==3.2.500' >> requirements-dev.txt
pip install -r requirements-dev.txt# Scan a directory
checkov -d .
# Scan a specific Terraform file
checkov -f main.tf
# Scan multiple frameworks
checkov -d . --framework terraform,kubernetes,dockerfile
# Scan a Terraform plan (deeper analysis)
terraform plan -out=plan.tfplan
terraform show -json plan.tfplan > plan.json
checkov -f plan.json# Default (CLI)
checkov -d .
# JSON for parsing
checkov -d . -o json
# SARIF for code-scanning dashboards (GitHub Code Scanning)
checkov -d . -o sarif --output-file-path checkov.sarif
# JUnit XML for CI test reporting
checkov -d . -o junitxml > checkov.xml
# Multiple
checkov -d . -o cli -o sarif# Skip specific checks
checkov -d . --skip-check CKV_AWS_18,CKV_AWS_20
# Skip a check class
checkov -d . --skip-check CKV_AWS_*In code:
# main.tf
resource "aws_s3_bucket" "logs" {
bucket = "my-logs"
# checkov:skip=CKV_AWS_20:Public read access intentional for log distribution
}The :skip= annotation requires a justification - reviewable in
PRs.
Author custom Python checks (and the no-code YAML-policy alternative) for team-specific rules the built-in set misses: references/custom-checks-and-ci.md.
# Default: any failed check exits non-zero (CI fails)
checkov -d .
# Soft fail: log issues but exit 0 (informational)
checkov -d . --soft-fail
# Soft fail only on specific checks
checkov -d . --soft-fail-on CKV_AWS_*Pattern: hard fail on critical / new findings; soft fail on legacy issues being ratcheted down.
# Generate baseline (current state of findings)
checkov -d . --create-baseline
# Use baseline (fail only on NEW findings vs baseline)
checkov -d . --baseline .checkov.baselineBaselines let teams adopt Checkov against legacy code without fixing all existing issues at once - only new findings break the build.
Wire the scan into CI with a baseline plus SARIF upload to GitHub Code Scanning (findings surface as PR comments + the Security tab): references/custom-checks-and-ci.md.
Checkov + tfsec + KICS catch overlapping but non-identical issues. Combine results to a unified verdict.
checkov -d . -o json > checkov.json
tfsec . -f json > tfsec.json
kics scan -p . --report-formats json -o ./kics-results
# Combine the three reports into a unified verdictA team adopts Checkov on a legacy Terraform + Kubernetes monorepo.
pip install checkov==3.2.500, pinned in requirements-dev.txt.checkov -d . --framework terraform,kubernetes
reports a large backlog of existing failures - too many to fix
at once.checkov -d . --create-baseline
writes .checkov.baseline.checkov -d . --baseline .checkov.baseline -o sarif --output-file-path checkov.sarif; the build passes because no
findings are new versus the baseline.aws_s3_bucket with acl = "public-read". Checkov
flags CKV_AWS_20 as a NEW finding and fails the build.checkov:skip=CKV_AWS_20 comment); the SARIF upload clears the
Security-tab entry and the build goes green.Result: legacy debt is ratcheted down, not ignored, and each PR is gated only on net-new misconfigurations.
| Anti-pattern | Why it fails | Fix |
|---|---|---|
Skipping all failed checks via --skip-check | Defeats security scanning. | Per-check checkov:skip= with justification (Step 4). |
| Baseline never updated | Legacy issues never fixed; only-new gating becomes meaningless. | Periodic baseline review + ratchet down. |
| Checkov as the only IaC scanner | Tool-specific gaps; some issues missed. | Pair with tfsec / KICS (Step 9). |
| Ignoring SARIF / GitHub Security tab | Findings invisible until someone runs the CLI. | SARIF upload (Step 8). |
| Custom checks without tests | Custom logic bugs let bad config through. | Test custom checks (per OPA's opa test pattern). |
tfsec-policy,
kics-policy - sister scanners.policy-as-code-runner -
custom policies via OPA / Conftest (Checkov for built-in; OPA
for custom).