-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.dot
36 lines (35 loc) · 2.22 KB
/
base.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
digraph {
compound = "true"
newrank = "true"
subgraph "root" {
"[root] aws_autoscaling_group.example" [label = "aws_autoscaling_group.example", shape = "box"]
"[root] aws_elb.example" [label = "aws_elb.example", shape = "box"]
"[root] aws_launch_configuration.example" [label = "aws_launch_configuration.example", shape = "box"]
"[root] aws_security_group.elb" [label = "aws_security_group.elb", shape = "box"]
"[root] aws_security_group.instance" [label = "aws_security_group.instance", shape = "box"]
"[root] data.aws_availability_zones.all" [label = "data.aws_availability_zones.all", shape = "box"]
"[root] provider.aws" [label = "provider.aws", shape = "diamond"]
"[root] aws_autoscaling_group.example" -> "[root] aws_elb.example"
"[root] aws_autoscaling_group.example" -> "[root] aws_launch_configuration.example"
"[root] aws_elb.example" -> "[root] aws_security_group.elb"
"[root] aws_elb.example" -> "[root] data.aws_availability_zones.all"
"[root] aws_elb.example" -> "[root] var.server_port"
"[root] aws_launch_configuration.example" -> "[root] aws_security_group.instance"
"[root] aws_launch_configuration.example" -> "[root] var.key_name"
"[root] aws_security_group.elb" -> "[root] provider.aws"
"[root] aws_security_group.instance" -> "[root] provider.aws"
"[root] aws_security_group.instance" -> "[root] var.server_port"
"[root] data.aws_availability_zones.all" -> "[root] provider.aws"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] aws_autoscaling_group.example"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] output.elb_dns_name"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] output.public_port"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] var.access_key"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] var.private_key_path"
"[root] meta.count-boundary (count boundary fixup)" -> "[root] var.secret_key"
"[root] output.elb_dns_name" -> "[root] aws_elb.example"
"[root] output.public_port" -> "[root] var.server_port"
"[root] provider.aws (close)" -> "[root] aws_autoscaling_group.example"
"[root] root" -> "[root] meta.count-boundary (count boundary fixup)"
"[root] root" -> "[root] provider.aws (close)"
}
}