-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.dot
53 lines (39 loc) · 1.21 KB
/
deployment.dot
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
digraph G {
subgraph cluster_0 {
label="API";
loadb [label="elastic load balancer"];
loadb -> python1 [dir="both"];
loadb -> python2 [dir="both"];
loadb -> python3 [dir="both"];
subgraph cluster_1 {
label="Elastic Compute Cloud 2 (EC2)";
subgraph cluster_2 {
label="Docker"
python1 [label="Python/Flask"];
}
subgraph cluster_3 {
label="Docker"
python2 [label="Python/Flask"];
}
subgraph cluster_4 {
label="Docker"
python3 [label="Python/Flask"];
}
etc [label="...", shape=rectangle];
}
python1 -> database;
python2 -> database;
python3 -> database;
etc -> database;
database [label="DynamoDB", shape=cylinder, style=filled];
}
subgraph cluster_5 {
label="AWS S3";
angular [label="angular app"];
}
client;
client -> internet [dir="both"];
internet -> loadb [dir="both", label="api.domain.com"];
internet -> angular [dir="both", label="domain.com"];
internet [shape=doublecircle];
}