tf-eu-guard
EU compliance security linter for Terraform — maps infrastructure misconfigurations to NIS2 (Directive 2022/2555) and GDPR (Regulation 2016/679) requirements.
Problem
The NIS2 Directive requires covered entities to implement specific cybersecurity measures by October 2024. Article 21(2) mandates risk management measures including access control, encryption, incident handling, backup policies, and secure authentication. GDPR Article 32 imposes similar technical and organizational safeguards for processing personal data.
Most organizations scan infrastructure-as-code with tools like Checkov or tfsec, but the output is generic security findings — not compliance mappings. Security teams must manually trace each finding to the relevant NIS2 or GDPR article, a slow and error-prone process that blocks audit preparation.
tf-eu-guard solves this: it wraps Checkov, enriches each failed check with the exact NIS2/GDPR articles it violates, and produces reports structured for developers, security engineers, and auditors.
What It Does
- Scans Terraform using Checkov — 1,000+ built-in checks for AWS, Azure, GCP, and other providers
- Enriches findings with NIS2 Article 21(2) and GDPR Article 32(1) / 44 mappings from a curated registry
- Filters to show only EU-compliance-relevant issues (drops unmapped findings)
- Generates three report formats from one scan:
- Dev report (terminal/HTML): severity-sorted findings for engineers
- Security dashboard (HTML): CRITICAL/HIGH/MEDIUM/LOW breakdown with stats
- Auditor report (HTML): article-by-article view showing which NIS2/GDPR clauses have open findings
- Custom checks: Adds EU-specific rules (e.g., non-EU regions, hardcoded secrets) not in upstream Checkov
Quick Start
Installation
Requires Python ≥ 3.10. Installs Checkov 3.3.13 as a dependency.
pip install -e .
Basic Scan
# Scan a Terraform directory
tf-eu-guard scan ./terraform --output dev
# Generate all three HTML reports
tf-eu-guard scan ./terraform --output all
# Filter to GDPR-only findings and output JSON
tf-eu-guard scan ./terraform --output json --framework gdpr
# Fail the build (exit code 1) on HIGH or worse findings — for CI/CD
tf-eu-guard scan ./terraform --fail-on-severity HIGH
Try it: Run
tf-eu-guard scan examples/vulnerable-aws/ --output allto see ~30 mapped findings, ortf-eu-guard scan examples/compliant-aws/ --output devto see a clean scan.
Use Pre-Generated Checkov JSON
If you already run Checkov in CI or with custom checks, feed tf-eu-guard the JSON directly:
# From a file
checkov -d ./terraform --output json --framework terraform --quiet > checkov.json
tf-eu-guard scan --checkov-json checkov.json --output security
# From stdin
checkov -d ./terraform --output json --framework terraform --quiet \
| tf-eu-guard scan --checkov-json - --output auditor
Use
--framework terraformin Checkov to get a single JSON object. tf-eu-guard also handles the multi-check-type array and extracts theterraformresult automatically.
Use as a Claude Code Skill
This repo includes a Claude Code skill at .claude/skills/tf-eu-guard/. In Claude Code:
/tf-eu-guard ./terraform
Or just ask: "Check my Terraform for NIS2 and GDPR compliance" — Claude runs the scan and summarizes findings by framework and severity.
Usage
Developer Scan
Quick terminal output for engineers fixing issues:
tf-eu-guard scan ./terraform --output dev
Security Dashboard
HTML report with severity breakdown and compliance tags:
tf-eu-guard scan ./terraform --output security
Live HTML version:
docs/screenshots/scan-report.html
Auditor Compliance Matrix
Article-by-article view for audit preparation:
tf-eu-guard scan ./terraform --output auditor
Live HTML version:
docs/screenshots/auditor-report.html
JSON (CI/CD & Tooling)
Machine-readable output for pipelines:
tf-eu-guard scan ./terraform --output json --framework nis2
Generate All Reports at Once
tf-eu-guard scan ./terraform --output all
CI/CD Gating
Exit codes make tf-eu-guard usable as a pipeline gate. Exit code 1 is returned when findings meet the threshold; 0 otherwise:
tf-eu-guard scan ./terraform --fail-on-severity HIGH # fail on HIGH or CRITICAL
tf-eu-guard scan ./terraform --fail-on-any # fail on any finding
GitHub Action
- uses: 44aayush/tf-eu-guard-omni@v1
with:
path: './infra'
fail-on-severity: 'HIGH'
Pre-commit Hook
repos:
- repo: https://github.com/44aayush/tf-eu-guard-omni
rev: v0.1.0
hooks:
- id: tf-eu-guard
Scope
| Regulation | Coverage | Status |
|---|---|---|
| NIS2 Article 21(2) | Technical/organizational cybersecurity measures | ✅ 38 check mappings |
| GDPR Article 32(1) | Security of processing (encryption, access control, resilience) | ✅ 38 check mappings |
| GDPR Article 44 | Transfers to third countries (non-EU regions) | ✅ Custom check EUGUARD_GDPR_001 |
Note: CRA and DORA are out of scope for this tool — they address product lifecycle and financial-sector operational resilience respectively, not cloud infrastructure configuration.
Current Registry
161 Checkov checks mapped — AWS: 116 mappings | Azure: 23 mappings | GCP: 22 mappings — covering encryption at rest/in transit, logging & detection, backup & recovery, secure development/supply chain, secrets in code, IAM/access control, and network segmentation:
- IAM / access control: CKV_AWS_273, 287, 288, 62, 286, 63, 355, 289, 290, 274, 40, 9, 109, 111, 283, 356, 70, 79, 162, 359, CKV2_AWS_40, CKV2_AWS_41, CKV2_AWS_52
- Encryption (rest + transit): CKV_AWS_145, 3, 8, 96, 5, 247, 44, 347, 279, 280, 327, 136, 189, 186, 173, 58, 7, 127, 376, 228, 379, CKV2_AWS_2, CKV2_AWS_64, CKV2_AWS_69
- Logging / detection: CKV_AWS_18, 157, 101, 84, 317, 324, 325, 92, 37, 50, 126, 353, 158, 338, CKV2_AWS_11, CKV2_AWS_30, CKV2_AWS_62
- Backup / resilience: CKV_AWS_21, 144, 326, 361, 139, 115, 116, 135, 318, 313, 362, CKV2_AWS_8, CKV2_AWS_58, CKV2_AWS_59, CKV2_AWS_60, CKV2_AWS_61
- Secure development / secrets: CKV_AWS_226, 363, 272, 51, 163, 41, 45, 46
- S3 / RDS / network exposure: CKV_AWS_20, 53–56, 16, 17, 133, 129, 161, 293, 118, 24, 25, 260, 382, 137, 248, 38, 39, 117, 23, CKV2_AWS_6, CKV2_AWS_12, CKV2_AWS_5
- Custom: EUGUARD_GDPR_001 (non-EU regions), EUGUARD_NIS2_001 (hardcoded secrets)
- Azure (23):
tf_eu_guard/mapping/registry-azure.yaml— storage account encryption/public access, SQL firewall & public network access, Key Vault network rules, App Service HTTPS/auth/logging, NSG SSH rules, and more - GCP (22):
tf_eu_guard/mapping/registry-gcp.yaml— GCS bucket CMEK/public IAM, Cloud SQL public IP/SSL/CMEK, GKE private clusters/ABAC/authorized networks, VPC flow logs, and more
The registry is split per provider (registry-aws.yaml, registry-azure.yaml, registry-gcp.yaml) and every entry is schema-validated in CI.
Architecture
┌──────────────┐
│ Terraform │
│ files │
└──────┬───────┘
│
▼
┌──────────────────────────────────────────────┐
│ tf-eu-guard │
│ ┌─────────────────────────────────────────┐ │
│ │ 1. run_checkov() / load_checkov_json() │ │
│ │ → Checkov results (passed + failed) │ │
│ └──────────────┬──────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────┐ │
│ │ 2. extract_failed_checks() │ │
│ │ → Filter to failed checks only │ │
│ └──────────────┬──────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────┐ │
│ │ 3. load_registry() │ │
│ │ → NIS2/GDPR mapping registry │ │
│ └──────────────┬──────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────┐ │
│ │ 4. enrich_findings() │ │
│ │ → Join checks ⟷ compliance articles │ │
│ │ → Drop unmapped findings │ │
│ └──────────────┬──────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────┐ │
│ │ 5. Optional: filter by framework │ │
│ │ (--framework nis2 / gdpr) │ │
│ └──────────────┬──────────────────────────┘ │
│ ▼ │
│ ┌─────────────────────────────────────────┐ │
│ │ 6. generate_report() │ │
│ │ → dev / json / security / auditor │ │
│ └─────────────────────────────────────────┘ │
└──────────────────────────────────────────────┘
│
▼
┌──────────────────────────────────────────┐
│ Reports: │
│ • Terminal rich table │
│ • dev-report.html │
│ • scan-report.html (dashboard) │
│ • auditor-report.html (by article) │
│ • JSON (for CI/tooling) │
└──────────────────────────────────────────┘
Key differentiator: The EU compliance mapping registry. Without it, this is just another Checkov wrapper. With it, it's the bridge from "S3 bucket not encrypted" to "violates NIS2 Art. 21(2)(h) and GDPR Art. 32(1)(a)."
Contributing
See CONTRIBUTING.md for guidelines — especially on proposing new registry mappings. Contributions welcome:
- Registry expansion: Map more Checkov checks to NIS2/GDPR
- New custom checks: EU-specific patterns Checkov doesn't cover
- Report improvements: Better visualizations, export formats
License
MIT — see LICENSE
Acknowledgments
- Checkov (bridgecrewio/checkov) — detection engine
- terragoat (bridgecrewio/terragoat) — vulnerable infrastructure test cases (used in the end-to-end test suite; see tests/README.md)
- NIS2 Directive — Directive (EU) 2022/2555
- GDPR — Regulation (EU) 2016/679
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tf_eu_guard-0.1.0.tar.gz.
File metadata
- Download URL: tf_eu_guard-0.1.0.tar.gz
- Upload date:
- Size: 6.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd32838dc7c10447b1a9ef04d427cfe37fb3cce518a055760afb4ea2e51026f6
|
|
| MD5 |
c5a4954217ee3605d5d58fe2f577ed8e
|
|
| BLAKE2b-256 |
36b0b03fc2d08761df5f1d6da9c6fcc26a521c68a0991dea881a684100c86f99
|
File details
Details for the file tf_eu_guard-0.1.0-py3-none-any.whl.
File metadata
- Download URL: tf_eu_guard-0.1.0-py3-none-any.whl
- Upload date:
- Size: 62.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3feb6f14e9905ac2b320a2ef77ecc621624ea3e8f72e88efb0aae93a9f9a7c5c
|
|
| MD5 |
64dee6a752ed1b1f4e5c38e25087bdbc
|
|
| BLAKE2b-256 |
db1ab4b2f98bbe9cdc86266b80e94c4b2a17e3683ced780fc42622293a4a7ea2
|