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---
32 lines
984 B
Terraform
32 lines
984 B
Terraform
resource "aws_ecs_task_definition" "this" {
|
|
family = var.family
|
|
cpu = tostring(var.cpu)
|
|
memory = tostring(var.memory)
|
|
requires_compatibilities = local.requires_compatibilities
|
|
network_mode = local.network_mode
|
|
container_definitions = local.container_definitions
|
|
}
|
|
|
|
resource "aws_ecs_service" "this" {
|
|
name = "nova-microservice"
|
|
cluster = var.cluster_arn
|
|
task_definition = aws_ecs_task_definition.this.arn
|
|
desired_count = var.desired_count
|
|
launch_type = var.launch_type
|
|
|
|
network_configuration {
|
|
subnets = local.subnet_list
|
|
security_groups = local.security_groups
|
|
assign_public_ip = var.launch_type == "FARGATE"
|
|
}
|
|
|
|
dynamic "load_balancer" {
|
|
for_each = var.lb_target_group_arn != null ? [1] : []
|
|
content {
|
|
target_group_arn = var.lb_target_group_arn
|
|
container_name = "app"
|
|
container_port = var.port
|
|
}
|
|
}
|
|
}
|