Introduction
A compliance framework in Prowler maps a public or custom control catalog (for example CIS, NIST 800-53, PCI DSS, HIPAA, ENS, CCC, DORA) to the security checks that Prowler already runs. Each requirement links to zero, one or more Prowler checks. When a scan executes, findings are aggregated per requirement to produce the compliance report rendered by Prowler CLI and Prowler Cloud. Prowler ships 85+ compliance frameworks across all providers. The catalog lives underprowler/compliance/<provider>/ (legacy, per-provider) or prowler/compliance/ (universal, multi-provider).
Two supported schemas
Auto-discovery happens in
get_bulk_compliance_frameworks_universal(provider) (prowler/lib/check/compliance_models.py), which scans both the top-level prowler/compliance/ directory and every per-provider sub-directory. Legacy frameworks are transparently converted to the universal ComplianceFramework model via adapt_legacy_to_universal() before being returned, so the rest of Prowler — CLI table rendering, CSV/OCSF outputs, PDF generation — works the same regardless of the source schema.
The legacy entry-point Compliance.get_bulk(provider) (used by older code paths) only scans per-provider sub-directories. Universal top-level files are picked up exclusively via the universal loader; this matters if you are wiring a new code path against the legacy API.
For new frameworks, prefer the universal schema: it requires no Python code changes, supports multiple providers in a single file, and table/PDF rendering is driven entirely from declarative configuration inside the JSON.
All Pydantic models incompliance_models.pyare imported frompydantic.v1. Subclasses you add for the legacy schema must usefrom pydantic.v1 import BaseModel.
Prerequisites
Before adding a new framework, complete the following checks:- Verify the framework is not already supported. Inspect
prowler/compliance/and everyprowler/compliance/<provider>/for an existing JSON file matching the name and version. - Confirm the required checks exist. Every requirement that can be automated must point to one or more existing Prowler checks. For each missing check, implement it first by following the Prowler Checks guide.
- Review a reference framework. Use an existing framework with a similar structure as your template:
- Universal:
prowler/compliance/dora_2022_2554.json,prowler/compliance/csa_ccm_4.0.json. - Legacy:
prowler/compliance/aws/cis_2.0_aws.json(canonical CIS shape),prowler/compliance/aws/ccc_aws.json,prowler/compliance/aws/ens_rd2022_aws.json,prowler/compliance/aws/nist_800_53_revision_5_aws.json.
- Universal:
Universal Compliance Framework
Where the file lives
Place the file at the top level of the compliance directory:prowler/compliance/csa_ccm_4.0.json, prowler/compliance/dora_2022_2554.json.
The file is auto-discovered — there is no need to register it in any __init__.py, modify prowler/lib/outputs/, or update any other Python module. The framework key Prowler CLI accepts via --compliance is the basename of the JSON file without .json (dora_2022_2554.json → dora_2022_2554).
Top-level structure
provider field at the top level is optional. The framework’s effective provider list is derived by ComplianceFramework.get_providers() (compliance_models.py) from the union of all keys appearing in requirement.checks across all requirements; the explicit provider field is used only as a fallback when no requirement carries any checks key. This is what enables a single file (e.g. dora_2022_2554.json) to cover AWS today and add Azure / GCP / etc. tomorrow without restructuring.
Provider keys inside requirement.checks must match the directory names under prowler/providers/. The valid keys at present are: aws, azure, gcp, m365, kubernetes, iac, github, googleworkspace, alibabacloud, cloudflare, mongodbatlas, nhn, openstack, oraclecloud, llm. Comparison in supports_provider() is case-insensitive, but lowercase is the convention used everywhere in the repository.
attributes_metadata
Declares the shape of the per-requirement attributes dict. When this field is present, the root validator validate_attributes_against_metadata (compliance_models.py) enforces the schema at load time and rejects:
- Missing keys marked
required: true. - Keys present in
attributesbut not declared inattributes_metadata(typo / drift guard). - Values that violate a declared
enum. - Values whose Python type does not match a declared
int,floatorbool.
int, float and bool. For str, list_str and list_dict the type is documentation-only — non-conforming values won’t fail validation. If attributes_metadata is omitted, no per-requirement validation runs at all.
key(required): attribute name as it will appear inrequirement.attributes.label: human-readable label used in CSV headers and PDF.type: one ofstr,int,float,bool,list_str,list_dict. Defaults tostr.enum: optional list of allowed values; non-conforming values are rejected at load time.required: iftrue, every requirement must include this key with a non-null value.enum_display/enum_order: optional per-enum-value visual metadata (label, abbreviation, color, icon) and explicit ordering for PDF rendering.output_formats:{ "csv": <bool>, "ocsf": <bool> }— toggles inclusion in each output format. Both default totrue.
outputs
Optional. Controls how the framework is rendered in the console table and in the generated PDF report. Skipping it falls back to sensible defaults.
table_config.group_by must reference an attribute key declared in attributes_metadata. The same applies to pdf_config.group_by_field and to every charts[].group_by.
For frameworks with weighted scoring (e.g. ThreatScore) declare pdf_config.scoring with risk_field / weight_field / risk_boost_factor. For column splitting (e.g. CIS Level 1 vs Level 2) use table_config.split_by.
requirements
id(required): unique identifier within the framework.description(required): the requirement text as authored by the framework.name: short title shown alongside the id.attributes: flat dict; keys must conform toattributes_metadata.checks: dict keyed by provider name (the same lowercase keys listed in the previous section). Each value is a list of Prowler check names that evidence this requirement for that provider. The list may be empty and the dict itself defaults to{}if omitted; either way the requirement is still loaded and listed by--list-compliance-requirements, it just has zero checks to execute. Note: there is no automatic check-existence validation at load time — referencing a non-existent check name will silently produce a requirement with no findings. Validate this yourself (see “Validating Your Framework” below).config_requirements: optional list of configuration guardrails. Each entry asserts that a configurable check referenced by this requirement ran with a configuration strict enough to actually satisfy the requirement; otherwise the requirement is forced to FAIL. See Configuration Guardrails for Requirements for the full schema and semantics. In the universal schema the field name is lowercase (config_requirements); legacy files useConfigRequirements.
tactics, sub_techniques, platforms, technique_url (these are populated automatically when adapting a legacy MITRE JSON to the universal model).
Multi-provider frameworks
A single universal file can cover any number of providers. The framework appears under each provider’s--list-compliance output as long as at least one requirement has that provider key in its checks dict.
When extending an existing universal framework with a new provider, the only change required is editing requirement.checks:
Legacy Provider-Specific Compliance Framework
The legacy schema is still fully supported and remains the format used by most frameworks shipped today (CIS, NIST, ISO 27001, FedRAMP, PCI DSS, GDPR, HIPAA, ENS, etc.). It binds a framework to a single provider and validates each requirement against a framework-specific Pydantic attribute class. The legacy schema spans four layers — a complete contribution must touch every layer that applies:- Layer 1 — Schema validation: the Pydantic models in
prowler/lib/check/compliance_models.pydefine the canonical schema for each attribute shape. - Layer 2 — JSON catalog: the framework JSON file in
prowler/compliance/<provider>/lists every requirement and maps it to checks. - Layer 3 — Output formatter: the Python module in
prowler/lib/outputs/compliance/<framework>/builds the CSV row model, the per-provider transformer, and the CLI summary table. - Layer 4 — Output dispatchers: the dispatchers in
prowler/lib/outputs/compliance/compliance.pyandprowler/lib/outputs/compliance/compliance_output.pyroute findings to the right formatter based on the framework identifier.
Directory structure and file naming
Compliance frameworks live at:- All lowercase, words separated with underscores.
<provider>is a supported provider identifier (same lowercase list as the universal section above).<version>is optional but recommended. Omit only when the framework has no versioning (e.g.ccc_aws.json).- The file basename (without
.json) is the framework key that Prowler CLI accepts via--compliance.
prowler/compliance/aws/cis_2.0_aws.jsonprowler/compliance/aws/nist_800_53_revision_5_aws.jsonprowler/compliance/azure/ens_rd2022_azure.jsonprowler/compliance/kubernetes/cis_1.10_kubernetes.jsonprowler/compliance/aws/ccc_aws.json
JSON schema reference
Every legacy compliance file is a JSON document with the following top-level keys.Framework, Name and Provider are validated non-empty by the root validator framework_and_provider_must_not_be_empty (compliance_models.py).
Requirement Object
Each entry inRequirements describes one control or requirement.
Attribute Objects
Attributes is parsed against the union declared in Compliance_Requirement.Attributes (compliance_models.py). Pydantic v1 tries each member of the union in declaration order and falls back to Generic_Compliance_Requirement_Attribute (the last entry) when nothing else matches — so a brand-new shape that doesn’t match any existing class will silently be accepted as Generic, losing its specific fields.
As of today, the registered attribute classes are: CIS_Requirement_Attribute, ENS_Requirement_Attribute, ASDEssentialEight_Requirement_Attribute, ISO27001_2013_Requirement_Attribute, AWS_Well_Architected_Requirement_Attribute, KISA_ISMSP_Requirement_Attribute, Prowler_ThreatScore_Requirement_Attribute, CCC_Requirement_Attribute, C5Germany_Requirement_Attribute, CSA_CCM_Requirement_Attribute, and Generic_Compliance_Requirement_Attribute (fallback). MITRE-style frameworks use the separate Mitre_Requirement model with Tactics / SubTechniques / Platforms / TechniqueURL at the requirement top level. The most common shapes are summarized below.
CIS_Requirement_Attribute
Used by every CIS benchmark.ENS_Requirement_Attribute
Used by the Spanish ENS (Esquema Nacional de Seguridad) frameworks.CCC_Requirement_Attribute
Used by the Common Cloud Controls Catalog.Generic_Compliance_Requirement_Attribute
The fallback attribute model used when no framework-specific schema applies (e.g. NIST 800-53, PCI DSS, GDPR, HIPAA). It is always the last element of theCompliance_Requirement.Attributes Union; that ordering is load-bearing.
For the remaining attribute classes (
AWS_Well_Architected_Requirement_Attribute, ISO27001_2013_Requirement_Attribute, Mitre_Requirement_Attribute_<Provider>, KISA_ISMSP_Requirement_Attribute, Prowler_ThreatScore_Requirement_Attribute, C5Germany_Requirement_Attribute, CSA_CCM_Requirement_Attribute) consult prowler/lib/check/compliance_models.py for the full field sets.
The
Attributes field is a Pydantic Union. The generic attribute model must remain the last element of that Union — otherwise Pydantic v1 silently coerces every framework into the generic shape and your specialized fields are dropped. Adding a brand-new attribute shape requires inserting the Pydantic class before Generic_Compliance_Requirement_Attribute.Minimal working example
The following snippet is a complete, valid framework file namedmy_framework_1.0_aws.json, saved at prowler/compliance/aws/my_framework_1.0_aws.json. It uses the generic attribute shape for simplicity.
prowler/compliance/aws/my_framework_1.0_aws.json
Mapping checks to requirements
Each requirement links to the Prowler checks that, together, produce a PASS or FAIL verdict for that control.- Include every requirement from the source catalog. The framework file must mirror the full control list, one-to-one. Compliance percentages, dashboards, and exported metadata are computed against the total requirement count.
- List every check by its canonical identifier — the value of
CheckIDinside the check’s.metadata.jsonfile. - One requirement can reference multiple checks. The requirement is evaluated as FAIL when any referenced check produces a FAIL finding for a resource in scope.
- Leave
Checks(legacy) orchecks.<provider>(universal) as an empty array when the requirement cannot be automated. The requirement still appears in the report and contributes to the total. - Reuse checks across requirements when the same control applies in multiple places. Do not duplicate check logic to match framework structure.
- Avoid referencing checks from a different provider. A legacy compliance file is bound to one provider, and cross-provider checks will never match findings in the scan.
Supporting multiple providers (legacy)
The legacy schema binds each file to a single provider. To cover several providers with the same framework, ship one JSON file per provider:Framework and Version values identical across the files so the dispatcher matches them; change only the Provider, Checks, and provider-specific metadata. The CIS output formatter already supports every provider listed above.
For a brand-new framework that spans several providers, prefer the universal schema — it covers every provider from a single file. If you must use the legacy schema, add one transformer per provider in prowler/lib/outputs/compliance/<framework>/ and extend the summary-table dispatcher accordingly. See Output Formatter.
Output formatter
Legacy frameworks render in two forms: a detailed CSV report written to disk, and a summary table printed in the CLI. Both are produced by the output formatter package for the framework. Universal frameworks do not need a Python output formatter — theoutputs config inside the JSON drives rendering — so this section applies only to the legacy schema.
For a new legacy framework named my_framework, create:
Step 1 — Define the CSV row model
Inmodels.py, declare a Pydantic v1 model with one field per CSV column. Use existing models such as AWSCISModel in prowler/lib/outputs/compliance/cis/models.py as the reference. Fields typically include Provider, Description, AccountId, Region, AssessmentDate, Requirements_Id, Requirements_Description, one Requirements_Attributes_* field per attribute key, plus the finding fields Status, StatusExtended, ResourceId, ResourceName, CheckId, Muted, Framework, Name.
Step 2 — Implement the transformer
Inmy_framework_aws.py, subclass ComplianceOutput from prowler.lib.outputs.compliance.compliance_output and implement transform(findings, compliance, compliance_name). Iterate over findings, match each finding to the requirements it satisfies through finding.compliance.get(compliance_name, []), and append one row per attribute to self._data.
Step 3 — Add the summary-table dispatcher
Inmy_framework.py, implement get_my_framework_table(findings, bulk_checks_metadata, compliance_framework, output_filename, output_directory, compliance_overview) following the pattern in prowler/lib/outputs/compliance/cis/cis.py.
Step 4 — Register the framework in the dispatchers
- Add the dispatcher call in
prowler/lib/outputs/compliance/compliance.py, insidedisplay_compliance_table, with a branch such aselif "my_framework" in compliance_framework:. - Register the CSV model and transformer in
prowler/lib/outputs/compliance/compliance_output.pyso the CSV file is emitted during the scan.
For NIST-style catalogs that use
Generic_Compliance_Requirement_Attribute, no custom formatter is needed. The generic formatter in prowler/lib/outputs/compliance/generic/ handles them automatically, provided the JSON validates against the generic attribute schema.Legacy-to-universal adapter
At load time, every legacy file is transparently adapted to aComplianceFramework via adapt_legacy_to_universal() (compliance_models.py), which: (a) flattens the first element of Attributes into a flat attributes dict, (b) wraps Checks as {provider_lower: [...]}, (c) infers attributes_metadata from the matched Pydantic class via _infer_attribute_metadata(). The rest of Prowler (CSV/OCSF/PDF output, CLI table) then treats both formats identically.
Loader-error behaviour differs between the two entry points:
load_compliance_framework()(legacy) is fail-fast: it callssys.exit(1)on anyValidationError(compliance_models.py).load_compliance_framework_universal()is more lenient — it logs the error and returnsNone, soget_bulk_compliance_frameworks_universal()simply skips the broken file and keeps loading the rest.
Configuration Guardrails for Requirements
Some requirements are only truly satisfied when the configurable checks behind them ran with a configuration strict enough to meet the control. A configurable check reads thresholds from the scan’saudit_config, so loosening a value can make the check PASS while the requirement it backs is, in fact, not satisfied.
A worked example: CIS AWS 6.0 requirement 2.11 (“credentials unused for 45 days or more are disabled”) maps to iam_user_accesskey_unused, which is driven by the max_unused_access_keys_days config key. If a user raises that value to 120, the check passes for a key unused for 90 days — yet the requirement explicitly demands a 45-day threshold, so the PASS is misleading.
Configuration guardrails close that gap. A requirement declares the configuration it expects, and when the scan ran with a configuration too loose to honor it, the requirement is forced to FAIL in every compliance output, with the reason surfaced in the finding’s extended status.
Guardrails are an optional safety net for configurable checks. A requirement that maps only to non-configurable checks does not need them. When the field is absent, behavior is unchanged.
Where guardrails are declared
The field is attached to each requirement and exists in both schemas:- Legacy (
prowler/compliance/<provider>/...):ConfigRequirements, a list of objects, validated against theCompliance_Requirement_ConfigConstraintPydantic model (prowler/lib/check/compliance_models.py). - Universal (
prowler/compliance/...):config_requirements, the same list of objects as plain dicts onUniversalComplianceRequirement.
adapt_legacy_to_universal() copies ConfigRequirements into config_requirements (compliance_models.py), so downstream code only ever reads one shape.
Constraint schema
Each entry in the list is a single constraint with the following fields:Operators
subset / superset require both the applied value and Value to be lists; any other type is treated as not satisfied. For eq against a boolean, declare Value as a JSON boolean (false, not 0) — the model keeps booleans distinct from integers.How guardrails are evaluated
All evaluation lives in one shared module,prowler/lib/check/compliance_config_eval.py, consumed by every compliance output (CSV, OCSF, and the CLI tables) and reused by the Prowler API backend so the rule is defined exactly once.
- The applied configuration is the scan-global
audit_config(the same mapping for every resource and region), resolved viaget_scan_audit_config(). - For each requirement that declares constraints,
evaluate_config_constraints()walks the list and returns(is_compliant, reason). The requirement is compliant when every explicitly-set key satisfies its constraint. - A constraint tagged with a
Providerthat does not match the provider being scanned (resolved viaget_scan_provider_type()) is skipped. This scopes a universal framework’s constraints to the right provider, so a guardrail authored for an AWS check never affects a GCP or Azure scan of the same requirement. Untagged constraints (legacy single-provider frameworks) always apply. - A constraint whose
ConfigKeyis not present inaudit_configis skipped — the check’s built-in default is assumed to already match what the requirement expects. This is why nothing changes for the default configuration. - When a constraint is violated, the finding’s status is overridden to
FAILand a plain-language explanation is prepended tostatus_extended(viaapply_config_status()). The message opens withConfiguration not valid for this requirement.and names the check, the value the scan applied, what the requirement needs and how to fix it. For the table generators,get_effective_status()applies the same FAIL roll-up so per-section counts stay consistent.
Example: legacy framework
Fromprowler/compliance/aws/cis_6.0_aws.json, requirement 2.11 declares two guardrails — one per configurable check it maps to:
prowler/compliance/aws/cis_6.0_aws.json
mute_non_default_regions: true cannot be trusted for it:
Example: universal framework
The universal schema uses the lowercaseconfig_requirements key with the identical object shape:
Provider it targets so the guardrail is only evaluated on scans of that provider — essential for universal frameworks like CSA CCM and DORA, where one requirement maps checks across aws, azure, gcp and more. Because the operator is subset, adding "TLS 1.0" to recommended_minimal_tls_versions widens the allowlist beyond ["TLS 1.2", "TLS 1.3"] and the requirement is forced to FAIL.
What the user sees
With a loosened config, the affected requirement’s findings report:Configuration not valid for this requirement. message appears identically across the CSV, OCSF, and console-table outputs.
Authoring guidelines
- Declare a guardrail only for keys whose value actually changes whether the requirement is met. Most configurable checks do not need one.
- Set
Valueto the strictest configuration the control tolerates — the same number the control text cites (CIS 45 days, NIST ≤90, and so on). - Keep
ConfigKeyspelled exactly as the check reads it fromaudit_config; an unknown key is never present in the config and the constraint is silently skipped. - In a universal (multi-provider) framework, always set
Providerto the provider that ownsCheck— otherwise the guardrail would leak onto scans of the other providers the requirement maps. Legacy single-provider files omit it. - Pick the operator from the value’s role: a max threshold is
lte, a min threshold isgte, a toggle iseq, an allowlist issubset, a denylist issuperset. - An unrecognized operator does not block the requirement — a malformed constraint is treated as satisfied rather than failing the whole framework. Validate your JSON with the tests below.
Testing guardrails
The shared evaluator and the per-output integration are covered by:tests/lib/check/compliance_config_eval_test.py— operator semantics, skipped-key behavior, and the FAIL override.tests/lib/check/compliance_config_constraint_model_test.py— model validation (types, operator enum, bool-vs-int).tests/lib/check/compliance_config_requirements_data_test.py— sanity-checks the guardrails shipped in the JSON catalog.- Per-output tests under
tests/lib/outputs/compliance/(CIS AWS/Azure, ENS AWS, OCSF, universal table) confirm the override reaches each format.
Version handling
Prowler matches frameworks by concatenatingFramework and Version. A missing or empty Version collapses several frameworks to the same key and breaks CLI filtering with --compliance.
- Always set
Version(orversionfor universal frameworks) to a non-empty string, even for frameworks that rename editions rather than version them. Use the edition identifier (for exampleRD2022,v2025.10,4.0,2022/2554). - When the source catalog has no version, use the first year of adoption or the release date.
- For legacy files, make sure the version substring embedded in the filename matches
Version, because the CLI dispatcher readscompliance_framework.split("_")[1]to select the correct version.
Validating Your Framework
Before opening a PR, validate the JSON loads cleanly against the model and that every referenced check actually exists.1. Schema validation
For universal frameworks, load the file and inspect what was parsed. The framework key insidebulk is the basename of the JSON file (without .json); for prowler/compliance/dora_2022_2554.json that key is dora_2022_2554, for prowler/compliance/aws/cis_5.0_aws.json it is cis_5.0_aws.
2. Check existence cross-check
There is no automatic check-existence validation at load time. Cross-check that every check name in your framework maps to a real check directory:3. CLI smoke test
- Prowler produces a CSV file under
output/compliance/with the expected name. - The CLI summary table lists every section / pillar of the framework.
- Findings roll up under the expected requirements.
4. Inspect the CSV output
Open the generated CSV and confirm:- All columns defined in
models.py(legacy) or inattributes_metadata(universal) appear. - Every requirement has at least one row per scanned resource (when there are findings).
- Attribute values such as
Requirements_Attributes_Sectionreflect the JSON content.
5. Verify the Framework in Prowler Local Server
Launch Prowler Local Server (docker compose up from the repository root) and run a scan with the new compliance framework. Confirm the compliance page renders the requirements, sections, and status widgets correctly.
Testing
Compliance contributions require two layers of tests.- Schema tests exercise the Pydantic models. Extend
tests/lib/check/universal_compliance_models_test.pywith a case that loads the new JSON file and asserts the attribute type matches the expected model. - Output tests (legacy frameworks only) exercise the transformer. Mirror the structure under
tests/lib/outputs/compliance/<framework>/with fixtures that feed synthetic findings through the transformer and assert the resulting CSV rows.
Running and listing your framework
Once the file is in place, the CLI auto-discovers it:docs/user-guide/compliance/tutorials/ and register it in the "Compliance" group of docs/docs.json. See docs/user-guide/compliance/tutorials/threatscore.mdx as a reference.
Submitting the pull request
Before opening the pull request:- Run the complete QA pipeline:
- Add a changelog fragment
prowler/changelog.d/<slug>.added.md, describing the new framework and the providers it covers (no PR link in the text; it is attached automatically at release time). - Follow the Pull Request Template and set the PR title using Conventional Commits, e.g.
feat(compliance): add My Framework 1.0 for AWS. - Request review from the compliance codeowners listed in
.github/CODEOWNERS.
Troubleshooting
The following issues are the most common when contributing a compliance framework.ValidationError: field requiredduring scan (legacy). The JSON is missing a required attribute field. Re-check the matching Pydantic model inprowler/lib/check/compliance_models.py.- All attributes collapse to
Generic_Compliance_Requirement_Attributevalues (legacy). The PydanticUnionis ordered incorrectly, or the JSON matches only the generic shape. Keep the generic model in the last Union position and ensure every required field is present in the JSON. attributes_metadata validation failed(universal). The root validator incompliance_models.pyrejected the file. The error message lists each offending requirement; common causes are unknown attribute keys (typo or missing entry inattributes_metadata), enum violations, or missing required keys.--compliancefilter does not find the framework. For legacy: the filename does not match<framework>_<version>_<provider>.json, the version is empty, or the file lives outsideprowler/compliance/<provider>/. For universal: the file is not at the top level ofprowler/compliance/or it loaded asNone(check logs for the validation error).- CLI summary table is empty but the CSV is populated (legacy). The dispatcher branch in
prowler/lib/outputs/compliance/compliance.pyis missing or its substring match does not catch the framework key. - CSV file is missing after the scan (legacy). The transformer class is not registered in
prowler/lib/outputs/compliance/compliance_output.py, ortransform()raises silently. Run the scan with--log-level DEBUG. - Findings do not roll up under a requirement. A check listed in
Checkseither does not exist for that provider or is spelled incorrectly. Run--list-checks | grep <check_name>to confirm, or run the check-existence cross-check from “Validating Your Framework”.
Reference examples
Use the following files as templates when modeling a new contribution.prowler/compliance/dora_2022_2554.json— universal schema, single-provider populated (AWS), ready to extend with more providers.prowler/compliance/csa_ccm_4.0.json— universal schema, multi-provider populated (AWS, Azure, GCP, AlibabaCloud, OracleCloud).prowler/compliance/aws/cis_2.0_aws.json— legacy CIS attribute shape.prowler/compliance/aws/nist_800_53_revision_5_aws.json— legacy generic attribute shape.prowler/compliance/aws/ccc_aws.json— legacy CCC attribute shape.prowler/compliance/azure/ens_rd2022_azure.json— legacy ENS attribute shape.prowler/lib/check/compliance_models.py— canonical Pydantic schemas for both formats.prowler/lib/outputs/compliance/cis/— reference implementation of a multi-provider legacy output formatter.prowler/lib/outputs/compliance/generic/— reference implementation of a legacy generic output formatter.

