-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaskdef-uat.json
39 lines (39 loc) · 1.29 KB
/
taskdef-uat.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
{
"family": "franchise-frontend-uat",
"networkMode": "awsvpc",
"containerDefinitions": [
{
"name": "franchise-frontend-container-uat",
"image": "245866473499.dkr.ecr.ap-southeast-2.amazonaws.com/franchise-frontend-dockerimage-repo:{{imageID}}",
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000,
"protocol": "tcp"
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "ecs-franchise-frontend-uat",
"awslogs-region": "ap-southeast-2",
"awslogs-create-group": "true",
"awslogs-stream-prefix": "franchise-frontend-uat"
}
},
"environmentFiles": [
{
"value": "arn:aws:s3:::cc-environment-variables/franchisefrontend/franuat-frontend.env",
"type": "s3"
}
],
"essential": true
}
],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "1vCPU",
"memory": "2GB",
"executionRoleArn": "arn:aws:iam::245866473499:role/myEcsTaskExecutionRole"
}