Files
acdl/modules/l1/waf/interface.json
T
Jon Chery de91a4bb76 feat(P31): encryption-by-default + per-stack CMK (REQ-83, REQ-84, REQ-85)
---ci---
project: acdl
phase: 31
milestone: v1.8
status: execute
---/ci---

- New kms-key L1 primitive (aws:kms:key) with enable_key_rotation=true
  (AWS-managed annual rotation, D-075). Registered in registry.json.
- Adapter TYPE_MAP expanded for aws:kms:key + aws:kms:alias.
- Adapter emits enable_key_rotation from NFR.
- S3 adapter emits server_side_encryption_configuration with KMS when
  kms_key_arn provided; managed KMS fallback with stderr warning when not.
- All 10 existing L1 primitives now have encryption_enabled NFR (default true).
- s3, rds, ecr, ecs-service, ecs-cluster have kms_key_arn input.
- Both L2 compositions (static-assets, microservice) now include a kms-key
  child + wires connecting kms_key_arn to children.
- L2 stack outputs include kms_key_arn.

Tests: +7 (300 -> 307). All pass. run_platform.sh --check-only green
(static-assets now resolves to 5 resources with the CMK).
2026-07-22 22:11:03 +00:00

62 lines
1.7 KiB
JSON

{
"name": "waf",
"version": "1.0.0",
"kind": "l1",
"type": "aws:wafv2:webacl",
"description": "WAFv2 Web ACL primitive for CloudFront (substrate-agnostic stack type aws:wafv2:webacl; the Terraform adapter translates to aws_wafv2_web_acl). CloudFront-scoped WAF is always in us-east-1.",
"inputs": {
"name": {
"type": "string",
"description": "Name of the Web ACL.",
"required": true
},
"scope": {
"type": "string",
"description": "Scope of the Web ACL (default cloudfront for CloudFront associations).",
"required": false,
"default": "cloudfront"
},
"default_action": {
"type": "string",
"description": "Default action (default allow).",
"required": false,
"default": "allow"
},
"rules": {
"type": "string",
"description": "Optional custom rules as JSON (default: managed rules only).",
"required": false
},
"region": {
"type": "string",
"description": "AWS region (CloudFront-scoped WAF is always us-east-1; the adapter ignores this for cloudfront scope).",
"required": true
}
},
"outputs": {
"web_acl_arn": {
"type": "arn",
"description": "The WAF Web ACL ARN."
}
},
"nfrs": {
"encryption_enabled": {
"type": "boolean",
"description": "Enable KMS-encrypted CloudWatch log group for WAF logs.",
"default": true
},
"logging_enabled": {
"type": "boolean",
"description": "Enable WAF logging.",
"default": true
}
},
"resources": [
{
"type": "aws:wafv2:webacl",
"description": "WAFv2 Web ACL with managed rules.",
"inputs": ["name", "scope", "default_action", "rules"],
"outputs": ["web_acl_arn"]
}
]
}