forked from chaseappio/unleash-devops-home-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask-definition.json
37 lines (37 loc) · 1013 Bytes
/
task-definition.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
{
"containerDefinitions": [
{
"essential": true,
"image": "",
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/bucketeer",
"awslogs-region": "eu-north-1",
"awslogs-stream-prefix": "ecs",
"awslogs-create-group": "true"
}
},
"name": "bucketeer",
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000,
"protocol": "tcp"
}
]
}
],
"cpu": "256",
"taskRoleArn": "arn:aws:iam::905418187602:role/bucketeerS3BucketAccess",
"executionRoleArn": "arn:aws:iam::905418187602:role/ecs_task_execution_role",
"family": "bucketeer-task-definition",
"memory": "512",
"networkMode": "awsvpc",
"runtimePlatform": {
"operatingSystemFamily": "LINUX"
},
"requiresCompatibilities": [
"FARGATE"
]
}