Files
acdl/tests/fixtures/plan_json/passing.json
T
Jon Chery 7f4b79593a feat(P3): plan-JSON policies + meta-orchestration + pipeline wiring (REQ-300..303)
plan-json/ policies (3): forbid-plaintext-secrets (ports CKV_AWS_41/45/46),
forbid-iam-wildcard (ports CKV_AWS_1/40), require-kms-reference (ports
CKV_AWS_7/33) over terraform show -json output.

meta/ policies (2): block-on-any-critical (declarative source of truth for
critical-block; confidence_signal hard-override stays as defense-in-depth,
D-119) + tagging-rules-agree (cross-checks Checkov NOVA_TAG_NAMING vs kj
KJ_REQUIRE_TAGGING_STANDARD, D-118).

scripts/run_platform.sh Step 5b: parallel kyverno-json plan-JSON pass; merges
Checkov/Wiz + kj PCR lists into the confidence signal policy input; skips
gracefully when kj absent (D-120).

tests: test_plan_json_policies.py, test_meta_policies.py (skip-without-kj),
test_run_platform_plan_json_policies.py (script-substring assertion, no skip).

---ci---
project: acdl
phase: 3
milestone: v1.25
status: execute
phase_role: execution
requirements:
  covered: [REQ-300, REQ-301, REQ-302, REQ-303]
  partial: []
---/ci---
2026-08-12 18:29:34 +00:00

27 lines
757 B
JSON

{
"planned_values": {
"root_module": {
"resources": [
{
"address": "aws_s3_bucket.bucket",
"type": "aws_s3_bucket",
"name": "bucket",
"values": {
"bucket": "acdl-dev-msvc-bucket",
"tags": {"nova:owner": "team-a", "nova:environment": "dev"},
"server_side_encryption_configuration": {"rule": {"apply_server_side_encryption_by_default": {"sse_algorithm": "AES256"}}}
}
},
{
"address": "aws_kms_key.main",
"type": "aws_kms_key",
"name": "main",
"values": {
"key_id": "alias/nova-main",
"customer_master_key_spec": "SYMMETRIC_DEFAULT"
}
}
]
}
}
}