-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtaskdefinition.json
More file actions
34 lines (34 loc) · 874 Bytes
/
taskdefinition.json
File metadata and controls
34 lines (34 loc) · 874 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
32
33
34
{
"requiresCompatibilities": [
"EC2"
],
"containerDefinitions": [
{
"essential": true,
"image": "************.dkr.ecr.**-****-*.amazonaws.com/netz:netz",
"memory": 60000,
"cpu": 36864,
"name": "netz",
"environment" : [
{ "name" : "SUBNET_TO_SCAN", "value" : "0.0.0.0/0" },
{ "name" : "PORT_TO_SCAN", "value" : "9200" },
{ "name" : "ZGRAB2_ENDPOINT", "value" : "/" }
],
"mountPoints": [
{
"sourceVolume": "netz",
"containerPath": "/opt/out"
}
]
}
],
"volumes": [
{
"name": "netz",
"host": {
"sourcePath": "/tmp"
}
}
],
"family": "netz"
}