-
Notifications
You must be signed in to change notification settings - Fork 4
/
example.dot
25 lines (23 loc) · 1 KB
/
example.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
digraph G {
///// start Heroku styles
graph [fontname="helvetica",fontsize=14,splines=true,pad=0.1,compound=true,color="grey60",fontcolor="grey10",fillcolor=grey95,style="filled"];
node [fontname="helvetica",fontsize=12,color=purple4,shape=box,style="rounded, filled",fontcolor=purple4,fillcolor=grey99,penwidth=2];
edge [fontname="helvetica",color=grey35,fontcolor=black,arrowhead="normal",penwidth=2,arrowsize=0.5];
///// end Heroku styles
subgraph cluster3 {
label="Common Runtime"
"App C"
}
subgraph cluster1 {
label="Private Space A"
"App A"
"Postgres Instance\n(Private or Shield Plan)"
}
subgraph cluster2 {
label="Private Space B"
"App B"
}
"App A" -> "Postgres Instance\n(Private or Shield Plan)" [color=chartreuse3]
"App B":s -> "Postgres Instance\n(Private or Shield Plan)":ne [color=red, style=dashed, dir=none]
"App C":s -> "Postgres Instance\n(Private or Shield Plan)":nw [color=red, style=dashed, dir=none]
}