-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtask-definition-test.json
More file actions
30 lines (30 loc) · 943 Bytes
/
task-definition-test.json
File metadata and controls
30 lines (30 loc) · 943 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
{
"containerDefinitions": [
{
"name": "toynet-django-container",
"image": "909056806605.dkr.ecr.us-east-1.amazonaws.com/toynet-django-repo",
"cpu": 0,
"memoryReservation": 256,
"portMappings": [{
"hostPort": 0,
"containerPort": 8000,
"protocol": "tcp"
}],
"essential": true,
"mountPoints": [],
"volumesFrom": [],
"secrets": [{
"name": "SECRET_KEY",
"valueFrom": "arn:aws:secretsmanager:us-east-1:909056806605:secret:toynet-django-secretkey-qxjhxQ"
}]
}
],
"executionRoleArn": "arn:aws:iam::909056806605:role/ecsTaskExecutionRole-toynet-django",
"family": "toynet-django",
"volumes": [],
"placementConstraints": [],
"requiresCompatibilities": [
"EC2"
],
"memory": "256"
}