-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtaskdef.json
More file actions
61 lines (61 loc) · 1.69 KB
/
taskdef.json
File metadata and controls
61 lines (61 loc) · 1.69 KB
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
53
54
55
56
57
58
59
60
61
{
"containerDefinitions": [
{
"name": "app",
"image": "{{ must_env `IMAGE` }}",
"cpu": 0,
"portMappings": [
{
"containerPort": 8080,
"hostPort": 8080,
"protocol": "tcp"
}
],
"essential": true,
"environment": [],
"mountPoints": [],
"volumesFrom": [],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "cplive-plat-ue2-sandbox-example-app-on-ecs",
"awslogs-region": "{{ must_env `AWS_REGION` }}",
"awslogs-stream-prefix": "example-app-on-ecs"
}
}
}
],
"family": "cplive-plat-ue2-sandbox-example-app-on-ecs",
"taskRoleArn": "arn:aws:iam::539916835077:role/cplive-plat-ue2-sandbox-example-app-on-ecs-task",
"executionRoleArn": "arn:aws:iam::539916835077:role/cplive-plat-ue2-sandbox-example-app-on-ecs-exec",
"networkMode": "awsvpc",
"volumes": [],
"placementConstraints": [],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "256",
"memory": "512",
"tags": [
{
"key": "Environment",
"value": "ue2"
},
{
"key": "Stage",
"value": "sandbox"
},
{
"key": "Tenant",
"value": "plat"
},
{
"key": "Namespace",
"value": "cplive"
},
{
"key": "Name",
"value": "cplive-plat-ue2-sandbox-example-app-on-ecs"
}
]
}