Files
nova-platform/modules/l1/ecs-service/interface.json
T
CIAgent 2443909362 docs(milestone): complete v1.0-nova-platform (release v0.1.6)
---ci---
project: nova-platform
milestone: v1.0
status: complete
requirements:
  covered: [REQ-01,REQ-02,REQ-03,REQ-04,REQ-05,REQ-06,REQ-07,REQ-08,REQ-09,REQ-10,REQ-11,REQ-12,REQ-13,REQ-14,REQ-15,REQ-16,REQ-17,REQ-18,REQ-19,REQ-20,REQ-21,REQ-22,REQ-23,REQ-24,REQ-25,REQ-26,REQ-27,REQ-28,REQ-29,REQ-30,REQ-31,REQ-32,REQ-33,REQ-34,REQ-35,REQ-36,REQ-37,REQ-38]
  partial: []
---/ci---

v1.0 milestone complete: simplified infrastructure-delivery platform
derived from Nova (acdl). 6 phases (P0-P5 + P6 final). 38 REQ-IDs.
38 decisions (D-001..D-038). 76 tests pass. Engine boundary holds.
Happy paths green (check-only + CI). 13 L1 + 2 L2 modules. 5 terraform
roots. Shell reproducibility. Zero OOS files.

Tags: v0.1.0 (P0) → v0.1.1..v0.1.5 (P1..P5) → v0.1.6 (P6 = milestone
release on v0.1 patch line).
2026-08-25 02:18:35 +00:00

63 lines
2.0 KiB
JSON

{
"name": "ecs-service",
"version": "1.0.0",
"kind": "l1",
"type": "aws:ecs:service",
"description": "ECS service primitive (multi-resource: task definition + service). Engine-agnostic stack types aws:ecs:taskdef + aws:ecs:service; the Terraform adapter translates to aws_ecs_task_definition/aws_ecs_service.",
"inputs": {
"service_name": {
"type": "string",
"description": "Name of the ECS service (also used as the task definition family).",
"required": true
},
"cluster_arn": {
"type": "arn",
"description": "ARN of the ECS cluster the service runs in.",
"required": true
},
"task_definition": {
"type": "string",
"description": "Task definition ARN or family:revision to run. If supplied as a path/string JSON, the module creates an aws_ecs_task_definition.",
"required": true
},
"desired_count": {
"type": "integer",
"default": 1,
"description": "Number of tasks to run."
},
"enabled": {
"type": "boolean",
"default": true,
"description": "Feature flag: enable/disable this module. Set to false to skip resource creation."
},
"tags": {
"type": "map",
"default": {},
"description": "Additional tags to merge with the module defaults."
}
},
"outputs": {
"service_arn": {
"type": "arn",
"description": "The ECS service ARN."
},
"service_name": {
"type": "string",
"description": "The ECS service name (echoes the input)."
}
},
"resources": [
{
"type": "aws:ecs:taskdef",
"description": "The ECS task definition (registered from task_definition input).",
"inputs": ["service_name", "task_definition"],
"outputs": []
},
{
"type": "aws:ecs:service",
"description": "The ECS service running the task definition on the cluster.",
"inputs": ["service_name", "cluster_arn", "desired_count"],
"outputs": ["service_arn", "service_name"]
}
]
}