-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskdef.json
48 lines (48 loc) · 1.34 KB
/
taskdef.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
{
"executionRoleArn": "arn:aws:iam::161833711594:role/ecsTaskExecutionRole",
"containerDefinitions": [
{
"environmentFiles": [
{
"value": "arn:aws:s3:::vtvl-environments/production.env",
"type": "s3"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/production-backend",
"awslogs-region": "ap-southeast-1",
"awslogs-create-group": "true",
"awslogs-stream-prefix": "ecs"
}
},
"portMappings": [
{
"hostPort": 0,
"protocol": "tcp",
"containerPort": 3000
}
],
"image": "161833711594.dkr.ecr.ap-southeast-1.amazonaws.com/production-api:latest",
"essential": true,
"name": "backend"
}
],
"memory": "786",
"taskRoleArn": "arn:aws:iam::161833711594:role/ecsTaskExecutionRole",
"compatibilities": [
"EXTERNAL",
"EC2"
],
"taskDefinitionArn": "arn:aws:ecs:ap-southeast-1:161833711594:task-definition/production-backend:3",
"family": "production-backend",
"requiresCompatibilities": [
"EC2"
],
"runtimePlatform": {
"operatingSystemFamily": "LINUX",
"cpuArchitecture": "X86_64"
},
"cpu": "512"
}