-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaskdef.json
34 lines (34 loc) · 921 Bytes
/
taskdef.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"family": "TASKNAME",
"taskRoleArn": "TASKROLE",
"executionRoleArn": "EXECUTIONROLE",
"networkMode": "awsvpc",
"containerDefinitions": [
{
"name": "TASKNAME",
"image": "ECRIMAGE",
"portMappings": [
{
"containerPort": PORT,
"hostPort": PORT,
"protocol": "PortProtocol"
}
],
"essential": true,
TASKENVIRONMENT
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "AWSLOGGROUP",
"awslogs-region": "AWSREGION",
"awslogs-stream-prefix": "ecs"
}
}
}
],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "1024",
"memory": "2048"
}