-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskDefinition.json
More file actions
31 lines (31 loc) · 862 Bytes
/
taskDefinition.json
File metadata and controls
31 lines (31 loc) · 862 Bytes
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
{
"executionRoleArn": "arn:aws:iam::332586708094:role/ecsTaskExecutionRole",
"containerDefinitions": [{
"name": "supportify_backend",
"image": "dkr.ecr.us-east-2.amazonaws.com/supportify_backend",
"memory": "2048",
"cpu": "1024",
"essential": true,
"portMappings": [{
"containerPort": 80,
"protocol": "tcp"
}],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-create-group": "true",
"awslogs-group": "awslogs-supportify-backend",
"awslogs-region": "us-east-2",
"awslogs-stream-prefix": "ecs"
},
"secretOptions": []
}}
],
"volumes": [],
"requiresCompatibilities": ["FARGATE"],
"networkMode": "awsvpc",
"placementConstraints": [],
"family": "application-stack",
"memory": "2048",
"cpu": "1024"
}