-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskdef.json
52 lines (52 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"executionRoleArn": "{Substitute this with what gets generated from the CDK template}",
"containerDefinitions": [
{
"portMappings": [
{
"hostPort": 8080,
"protocol": "tcp",
"containerPort": 8080
}
],
"cpu": 1,
"memory": 512,
"image": "<IMAGE1_NAME>",
"name": "DefaultContainer"
}
],
"memory": "512",
"taskRoleArn": "{Substitute this with what gets generated from the CDK template}",
"compatibilities": [
"EC2",
"FARGATE"
],
"family": "{Substitute this with what gets generated from the CDK template}",
"requiresAttributes": [
{
"name": "com.amazonaws.ecs.capability.ecr-auth"
},
{
"name": "com.amazonaws.ecs.capability.docker-remote-api.1.17"
},
{
"name": "com.amazonaws.ecs.capability.task-iam-role"
},
{
"name": "ecs.capability.execution-role-ecr-pull"
},
{
"name": "com.amazonaws.ecs.capability.docker-remote-api.1.18"
},
{
"name": "ecs.capability.task-eni"
}
],
"requiresCompatibilities": [
"FARGATE"
],
"networkMode": "awsvpc",
"cpu": "256",
"revision": 6,
"status": "ACTIVE"
}