de91a4bb76
---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).
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "s3",
|
|
"version": "1.0.0",
|
|
"kind": "l1",
|
|
"type": "aws:s3:bucket",
|
|
"description": "S3 bucket primitive (substrate-agnostic stack type aws:s3:bucket; the Terraform adapter translates to aws_s3_bucket).",
|
|
"inputs": {
|
|
"bucket_name": {
|
|
"type": "string",
|
|
"description": "Globally-unique S3 bucket name.",
|
|
"required": true
|
|
},
|
|
"region": {
|
|
"type": "string",
|
|
"description": "AWS region the bucket is created in.",
|
|
"required": true
|
|
},
|
|
"kms_key_arn": {
|
|
"type": "string",
|
|
"description": "ARN of the CMK for SSE-KMS; if absent, uses managed key.",
|
|
"required": false
|
|
}
|
|
},
|
|
"outputs": {
|
|
"bucket_arn": {
|
|
"type": "arn",
|
|
"description": "The S3 bucket ARN."
|
|
},
|
|
"bucket_name": {
|
|
"type": "string",
|
|
"description": "The bucket name (echoes the input)."
|
|
},
|
|
"bucket_regional_domain_name": {
|
|
"type": "string",
|
|
"description": "The bucket regional domain name (e.g. acdl-spike-bucket.s3.us-east-1.amazonaws.com)."
|
|
}
|
|
},
|
|
"nfrs": {
|
|
"versioning": {
|
|
"type": "boolean",
|
|
"description": "Enable S3 versioning (default true).",
|
|
"default": true
|
|
},
|
|
"encryption_enabled": {
|
|
"type": "boolean",
|
|
"description": "Enable server-side encryption.",
|
|
"default": true
|
|
},
|
|
"sse_algorithm": {
|
|
"type": "string",
|
|
"description": "SSE algorithm.",
|
|
"default": "aws:kms"
|
|
}
|
|
}
|
|
} |