Files
acdl/modules/l1/alb/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

87 lines
2.4 KiB
JSON

{
"name": "alb",
"version": "1.0.0",
"kind": "l1",
"type": "aws:elbv2:loadbalancer",
"description": "Application Load Balancer primitive (substrate-agnostic stack types aws:elbv2:loadbalancer + aws:elbv2:listener + aws:elbv2:targetgroup; the Terraform adapter translates to aws_lb/aws_lb_listener/aws_lb_target_group).",
"inputs": {
"name": {
"type": "string",
"description": "Name tag for the load balancer and child resources.",
"required": true
},
"subnets": {
"type": "string",
"description": "Comma-separated subnet ids (ref to vpc).",
"required": true
},
"security_group": {
"type": "string",
"description": "Security group id for the load balancer.",
"required": true
},
"port": {
"type": "number",
"description": "Listener port (default 80).",
"required": false,
"default": 80
},
"protocol": {
"type": "string",
"description": "Listener protocol (default HTTP).",
"required": false,
"default": "HTTP"
},
"region": {
"type": "string",
"description": "AWS region the load balancer is created in.",
"required": true
}
},
"outputs": {
"lb_arn": {
"type": "arn",
"description": "The load balancer ARN."
},
"listener_arn": {
"type": "arn",
"description": "The listener ARN."
},
"target_group_arn": {
"type": "arn",
"description": "The target group ARN."
}
},
"nfrs": {
"encryption_enabled": {
"type": "boolean",
"description": "Enable TLS/HTTPS encryption in transit.",
"default": true
},
"tls_enabled": {
"type": "boolean",
"description": "Enable TLS listener.",
"default": true
}
},
"resources": [
{
"type": "aws:elbv2:loadbalancer",
"description": "Application load balancer in the VPC subnets.",
"inputs": ["name", "subnets", "security_group"],
"outputs": ["lb_arn"]
},
{
"type": "aws:elbv2:targetgroup",
"description": "Target group for the ECS service tasks.",
"inputs": ["name", "port", "protocol", "vpc_id"],
"outputs": ["target_group_arn"]
},
{
"type": "aws:elbv2:listener",
"description": "Listener forwarding the LB port to the target group.",
"inputs": ["lb_arn", "port", "protocol", "target_group_arn"],
"outputs": ["listener_arn"]
}
]
}