-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws-ecs-infrastructure-drawio.json
More file actions
119 lines (119 loc) · 2.77 KB
/
aws-ecs-infrastructure-drawio.json
File metadata and controls
119 lines (119 loc) · 2.77 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"diagram": {
"name": "AWS ECS Infrastructure",
"nodes": [
{
"id": "1",
"name": "Route 53",
"type": "aws-route53",
"x": 100,
"y": 50
},
{
"id": "2",
"name": "VPC",
"type": "aws-vpc",
"x": 300,
"y": 200,
"width": 600,
"height": 400
},
{
"id": "3",
"name": "Application Load Balancer",
"type": "aws-application-load-balancer",
"x": 350,
"y": 100
},
{
"id": "4",
"name": "ECS Cluster",
"type": "aws-ecs",
"x": 500,
"y": 250
},
{
"id": "5",
"name": "API Service",
"type": "aws-ecs-service",
"x": 400,
"y": 350
},
{
"id": "6",
"name": "Redis Service",
"type": "aws-ecs-service",
"x": 600,
"y": 350
},
{
"id": "7",
"name": "API Task 1",
"type": "aws-ecs-task",
"x": 350,
"y": 450
},
{
"id": "8",
"name": "API Task 2",
"type": "aws-ecs-task",
"x": 400,
"y": 450
},
{
"id": "9",
"name": "API Task 3",
"type": "aws-ecs-task",
"x": 450,
"y": 450
},
{
"id": "10",
"name": "Redis Task",
"type": "aws-ecs-task",
"x": 600,
"y": 450
},
{
"id": "11",
"name": "Elastic File System",
"type": "aws-efs",
"x": 750,
"y": 350
},
{
"id": "12",
"name": "Elastic Container Registry",
"type": "aws-ecr",
"x": 750,
"y": 250
},
{
"id": "13",
"name": "Auto Scaling",
"type": "aws-auto-scaling",
"x": 250,
"y": 350
}
],
"edges": [
{"from": "1", "to": "3", "label": "DNS Resolution"},
{"from": "3", "to": "4", "label": "Routes traffic"},
{"from": "2", "to": "4", "label": "Contains"},
{"from": "2", "to": "3", "label": "Contains"},
{"from": "2", "to": "11", "label": "Contains"},
{"from": "4", "to": "5", "label": ""},
{"from": "4", "to": "6", "label": ""},
{"from": "5", "to": "7", "label": ""},
{"from": "5", "to": "8", "label": ""},
{"from": "5", "to": "9", "label": ""},
{"from": "6", "to": "10", "label": ""},
{"from": "11", "to": "7", "label": "Shared storage"},
{"from": "11", "to": "8", "label": "Shared storage"},
{"from": "11", "to": "9", "label": "Shared storage"},
{"from": "12", "to": "5", "label": "Provides images"},
{"from": "12", "to": "6", "label": "Provides images"},
{"from": "13", "to": "5", "label": "Manages task count"}
]
}
}