github.com/spirius/terraform@v0.10.0-beta2.0.20170714185654-87b2c0cf8fea/examples/aws-ecs-alb/task-definition.json (about)

     1  [
     2    {
     3      "cpu": 256,
     4      "essential": true,
     5      "image": "${image_url}",
     6      "memory": 512,
     7      "name": "${container_name}",
     8      "portMappings": [
     9        {
    10          "containerPort": 2368,
    11          "hostPort": 8080
    12        }
    13      ],
    14      "logConfiguration": {
    15          "logDriver": "awslogs",
    16          "options": {
    17              "awslogs-group": "${log_group_name}",
    18              "awslogs-region": "${log_group_region}"
    19          }
    20      }
    21    }
    22  ]