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---
25 lines
803 B
Terraform
25 lines
803 B
Terraform
resource "aws_ecs_task_definition" "uptime" {
|
|
family = "nova-uptime"
|
|
cpu = tostring(var.cpu)
|
|
memory = tostring(var.memory)
|
|
requires_compatibilities = ["FARGATE"]
|
|
network_mode = "awsvpc"
|
|
container_definitions = local.container_definitions
|
|
}
|
|
|
|
resource "aws_ecs_service" "uptime" {
|
|
name = "nova-uptime"
|
|
cluster = local.cluster_ref
|
|
task_definition = aws_ecs_task_definition.uptime.arn
|
|
desired_count = var.feature_flag_enabled ? 1 : 0
|
|
launch_type = "FARGATE"
|
|
|
|
dynamic "network_configuration" {
|
|
for_each = length(local.subnet_list) > 0 ? [1] : []
|
|
content {
|
|
subnets = local.subnet_list
|
|
security_groups = local.sg_list
|
|
assign_public_ip = true
|
|
}
|
|
}
|
|
} |