-
Notifications
You must be signed in to change notification settings - Fork 1
/
tf-staging.json
41 lines (41 loc) · 1.25 KB
/
tf-staging.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
{
"family": "GyeongdanFastAPI",
"containerDefinitions": [
{
"name": "FastAPI",
"image": "ACCOUNT_ID.dkr.ecr.ap-northeast-2.amazonaws.com/gyeongdan-fastapi:latest",
"cpu": 512,
"memory": 512,
"portMappings": [
{
"containerPort": 8000,
"hostPort": 8000,
"protocol": "tcp"
}
],
"essential": true,
"environment": [],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/ecs/GyeongdanFastAPI",
"awslogs-create-group": "true",
"awslogs-region": "ap-northeast-2",
"awslogs-stream-prefix": "ecs"
}
}
}
],
"taskRoleArn": "arn:aws:iam::730335311420:role/ecsTaskExecutionRole",
"executionRoleArn": "arn:aws:iam::730335311420:role/ecsTaskExecutionRole",
"networkMode": "bridge",
"requiresCompatibilities": [
"EC2"
],
"cpu": "512",
"memory": "512",
"runtimePlatform": {
"cpuArchitecture": "X86_64",
"operatingSystemFamily": "LINUX"
}
}