-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtask-def.json
48 lines (47 loc) · 1.3 KB
/
task-def.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
{
"family": "waterbot-task-definition",
"taskRoleArn": "arn:aws:iam::992382623268:role/waterbot-task-role-testing",
"executionRoleArn": "arn:aws:iam::992382623268:role/waterbot-task-execution-role-testing",
"networkMode": "awsvpc",
"containerDefinitions": [
{
"name": "waterbot-container",
"image": "992382623268.dkr.ecr.us-west-2.amazonaws.com/waterbot-ecr:latest",
"cpu": 0,
"portMappings": [
{
"containerPort": 8000,
"hostPort": 8000,
"protocol": "tcp"
}
],
"essential": true,
"environment": [
{
"name": "TRANSCRIPT_BUCKET_NAME",
"value": "cdk-app-stack-dev-cdktranscriptbucketbc542607-j6vgijqnyga5"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/waterbot",
"awslogs-region": "us-west-2",
"awslogs-stream-prefix": "ecs"
}
},
"mountPoints": [],
"volumesFrom": []
}
],
"volumes": [],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "256",
"memory": "512",
"runtimePlatform": {
"cpuArchitecture": "X86_64",
"operatingSystemFamily": "LINUX"
}
}