0e6ecae26d
Rename all acdl-* AWS resources → nova-* across terraform (DynamoDB, Secrets Manager, Lambda, SNS, SG, KMS alias, ECS, ECR, IAM user/policy, state bucket, ALB, VPC/subnet names). Lambda default table names → nova-* (D-111). State bucket backend → nova-tfstate (-migrate-state documented). New docs/NOVA_AWS_MIGRATION.md runbook (staged migration + rollback). New scripts/migrate_dynamodb_data.py (scan+copy, dry-run default). acdl-deploy- → nova-deploy- role ARN in deploy workflows. Test fixtures updated; terraform validate + pytest + run_ci.sh PASS. ---ci--- project: acdl phase: 4 milestone: v1.15 status: execute ---/ci---
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"version": "1.0.0",
|
|
"stack": {
|
|
"name": "alb",
|
|
"kind": "l1",
|
|
"depth": 1
|
|
},
|
|
"resources": [
|
|
{
|
|
"id": "alb-loadbalancer",
|
|
"type": "aws:elbv2:loadbalancer",
|
|
"module": "alb@1.0.0",
|
|
"inputs": {
|
|
"name": "nova-alb",
|
|
"subnets": "subnet-12345",
|
|
"security_group": "sg-12345",
|
|
"region": "us-east-1"
|
|
},
|
|
"outputs": {
|
|
"lb_arn": {
|
|
"type": "arn"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"id": "alb-targetgroup",
|
|
"type": "aws:elbv2:targetgroup",
|
|
"module": "alb@1.0.0",
|
|
"inputs": {
|
|
"name": "nova-alb",
|
|
"port": 80,
|
|
"protocol": "HTTP",
|
|
"region": "us-east-1"
|
|
},
|
|
"outputs": {
|
|
"target_group_arn": {
|
|
"type": "arn"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"id": "alb-listener",
|
|
"type": "aws:elbv2:listener",
|
|
"module": "alb@1.0.0",
|
|
"inputs": {
|
|
"port": 80,
|
|
"protocol": "HTTP",
|
|
"region": "us-east-1"
|
|
},
|
|
"outputs": {
|
|
"listener_arn": {
|
|
"type": "arn"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|