Files
acdl/modules/l1/waf/interface.json
T
Jon Chery 8145eee8fc feat(P32): deletion-protection-by-default + L2 feature flag (REQ-86, REQ-87)
---ci---
project: acdl
phase: 32
milestone: v1.8
status: execute
---/ci---

- All 11 L1 primitives now have deletion_protection NFR (boolean, default true).
- Adapter emits `lifecycle { prevent_destroy = true }` when NFR is true;
  omits it when false. Default is true when NFR is absent.
- L2 composition resolver propagates inputs.deletion_protection to all
  children NFRs. When false, all resources get deletion_protection=false.
- Stack schema updated with optional features object (deletion_protection,
  uptime_enabled).
- Contract schema description updated to document deletion_protection
  and uptime_enabled inputs.

Tests: +5 (307 -> 312). All pass.
2026-07-22 22:12:42 +00:00

67 lines
1.9 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
},
"deletion_protection": {
"type": "boolean",
"description": "Prevent resource destruction via Terraform lifecycle prevent_destroy",
"default": true
}
},
"resources": [
{
"type": "aws:wafv2:webacl",
"description": "WAFv2 Web ACL with managed rules.",
"inputs": ["name", "scope", "default_action", "rules"],
"outputs": ["web_acl_arn"]
}
]
}