Files
terraform-ecs/task-definitions/tasks.json
Tommy Parnell 77e1e104c0 init
2017-02-07 07:15:34 -05:00

23 lines
527 B
JSON

[
{
"name": "${container_name}",
"image": "${registry}:${container_name}-latest",
"cpu": 300,
"memory": 300,
"links": [],
"portMappings": [
{
"containerPort": ${container_port},
"hostPort": ${host_port},
"protocol": "tcp"
}
],
"essential": true,
"entryPoint": [],
"command": [],
"environment": [],
"mountPoints": [],
"volumesFrom": []
}
]