Creates an ECS task definition for Electric sync service using the latest image from Docker Hub by default and the given container environment for configuration.
module "ecs_task_definition" {
source = "./modules/ecs_task_definition"
awslogs_region = "us-east-1"
container_environment = [
{
name = "DATABASE_URL"
value = "postgresql://..."
}
]
}