dot`
digraph G {
rankdir="LR";
"deploy.ps1" [shape=box, style=rounded];
resourceGroupEntry [shape=box, style=rounded];
AA [shape=box, style=rounded];
BB [shape=box, style=rounded];
CC [shape=box, style=rounded];
subgraph cluster_0 {
label="deploy.ps1";
style=rounded;
a0 -> a1;
}
subgraph cluster_1 {
label="resourceGroupEntry";
style=rounded;
r0;
}
"deploy.ps1" -> resourceGroupEntry;
"resourceGroupEntry" -> AA ;
"resourceGroupEntry" -> BB;
"resourceGroupEntry" -> CC;
}`