checkov

Prevent cloud misconfigurations and find vulnerabilities during build-time in infrastructure as code, container images and open source packages with Checkov by Bridgecrew. (by bridgecrewio)

Checkov Alternatives

Similar projects and alternatives to checkov

  1. terraform

    Terraform enables you to safely and predictably create, change, and improve infrastructure. It is a source-available tool that codifies APIs into declarative configuration files that can be shared amongst team members, treated as code, edited, reviewed, and versioned.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. pre-commit

    227 checkov VS pre-commit

    A framework for managing and maintaining multi-language pre-commit hooks.

  4. Pulumi

    211 checkov VS Pulumi

    Pulumi - Infrastructure as Code in any programming language 🚀

  5. trivy

    Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more

  6. atlantis

    Terraform Pull Request Automation

  7. OPA (Open Policy Agent)

    Open Policy Agent (OPA) is an open source, general-purpose policy engine.

  8. infracost

    Cloud cost intelligence for engineers, AI coding agents, and CI/CD 💰📉 Shift FinOps Left!

  9. terragrunt

    Terragrunt is a flexible orchestration tool that allows Infrastructure as Code written in OpenTofu/Terraform to scale.

  10. grype

    65 checkov VS grype

    A vulnerability scanner for container images and filesystems

  11. terratest

    Terratest is a Go library that makes it easier to write automated tests for your infrastructure code.

  12. gitleaks

    Find secrets with Gitleaks 🔑

  13. falco

    56 checkov VS falco

    Cloud Native Runtime Security

  14. tflint

    A Pluggable Terraform Linter

  15. tfsec

    41 checkov VS tfsec

    Tfsec is now part of Trivy

  16. terraform-docs

    Generate documentation from Terraform modules in various output formats

  17. kube-bench

    Checks whether Kubernetes is deployed according to security best practices as defined in the CIS Kubernetes Benchmark

  18. terrascan

    Discontinued Detect compliance and security violations across Infrastructure as Code to mitigate risk before provisioning cloud native infrastructure.

  19. kics

    15 checkov VS kics

    Find security vulnerabilities, compliance issues, and infrastructure misconfigurations early in the development cycle of your infrastructure-as-code with KICS by Checkmarx.

  20. pre-commit-terraform

    pre-commit git hooks to take care of Terraform configurations 🇺🇦

  21. cli

    9 checkov VS cli

    a lightweight, security focused, BDD test framework against terraform. (by terraform-compliance)

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better checkov alternative or higher similarity.

checkov discussion

Log in or Post with
  1. User avatar
    JamesWoolfenden
    · about 2 years ago
    · Reply

    Review ★★★★★ 10/10

checkov reviews and mentions

Posts with mentions or reviews of checkov. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-07-17.
  • Building a Monorepository of Terraform Modules on GitLab
    4 projects | dev.to | 17 Jul 2026
    # See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: end-of-file-fixer - id: check-merge-conflict - id: trailing-whitespace args: [--markdown-linebreak-ext=md] - id: check-shebang-scripts-are-executable # YAML - id: check-yaml # Cross platform - id: check-case-conflict # checks for files that would conflict in case-insensitive filesystems. - id: mixed-line-ending # replaces or checks mixed line ending. args: [--fix=lf] - repo: https://github.com/antonbabenko/pre-commit-terraform # Ensure the PRE_COMMIT_TERRAFORM_VERSION value is the same in .gitlab-ci.yml rev: v1.105.0 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases hooks: - id: terraform_fmt - id: terraform_docs args: ["--args=--lockfile=false"] - id: terraform_tflint - id: terraform_checkov args: - --args=--framework=terraform - --args=--soft-fail - --args=--config-file=__GIT_WORKING_DIR__/.checkov.yaml - --args=--skip-path=__GIT_WORKING_DIR__/.cache/pre-commit - repo: https://github.com/bridgecrewio/checkov.git rev: 3.2.524 hooks: - id: checkov_secrets args: [--directory, ., --framework, secrets, --config-file, .checkov.yaml, --skip-path, .cache/pre-commit] pass_filenames: false - repo: https://github.com/hashicorp/copywrite rev: v0.25.3 hooks: - id: add-headers
  • Catching Cloud Misconfigurations Before They Ship: SAST for Terraform with Checkov
    2 projects | dev.to | 9 Jul 2026
    Official repository: https://github.com/bridgecrewio/checkov
  • Applying SAST to Infrastructure as Code: Scanning Terraform with Checkov
    2 projects | dev.to | 5 Jul 2026
    Checkov (by Prisma Cloud) is open source, ships 1,000+ built-in policies for AWS, Azure and GCP, and supports Terraform, OpenTofu, CloudFormation, Kubernetes, Dockerfiles and more. It installs with a single pip install, needs no configuration to start, and exports SARIF reports that plug directly into GitHub Code Scanning. It also does something many scanners don't: graph-based checks (IDs starting with CKV2_) that reason about relationships between resources — for example, "this bucket has no aws_s3_bucket_public_access_block resource attached to it".
  • Your Infrastructure Has Bugs Too: Scanning Terraform with Checkov (IaC SAST)
    2 projects | dev.to | 4 Jul 2026
    TL;DR: Application code isn't the only thing that ships vulnerabilities — your Terraform does too. I wrote an intentionally insecure AWS configuration, scanned it with Checkov (a SAST tool for Infrastructure as Code, listed on the OWASP Source Code Analysis Tools page), went from 35 failed checks to 0, and wired the scan into GitHub Actions. Full code: GitHub repo →
  • Best DevSecOps Security Tools for CI/CD Pipeline Protection
    14 projects | dev.to | 27 Jun 2026
    Representative tools: Checkov is the broadest — it covers Terraform, Ansible, Kubernetes, and more out of the box. tfsec is Terraform-focused and fast (now converging with Trivy). KICS covers a wide spread of IaC formats.
  • [PT-BR] Guia de Módulo OpenTofu AWS EC2: Requisitos, Testes e Estratégia BDD
    3 projects | dev.to | 24 Apr 2026
  • Checkov Scan para Terraform com Azure Pipelines
    1 project | dev.to | 23 Mar 2026
  • 5 Best Ansible Playbook Scanning Tools in 2026 for Secure and Scalable Automation
    8 projects | dev.to | 17 Mar 2026
    GitHub: bridgecrewio/checkov
  • Specs = Tests: Why Spec-Driven Terraform Starts With Tests, Not Documents
    5 projects | dev.to | 6 Mar 2026
    Policy-as-code as the spec layer. Tools like OPA (Open Policy Agent), Checkov, and HashiCorp Sentinel let you write rules that are both human-readable and machine-enforceable. A Rego policy that says deny[msg] { not input.resource.aws_s3_bucket.encryption } is simultaneously your spec and your test. That's the Specs = Tests convergence in practice. Static analysis tools like tflint and Trivy add another enforcement layer — catching misconfigurations and security issues before anything gets planned or applied.
  • IaC Security in 2026: Terraform, Checkov, and Cloud Drift Detection
    2 projects | dev.to | 21 Feb 2026
  • A note from our sponsor - SaaSHub
    www.saashub.com | 17 Jul 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic checkov repo stats
77
8,870
9.4
5 days ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Python is
the 1st most popular programming language
based on number of references?