mirror of https://github.com/mingrammer/diagrams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
415 B
13 lines
415 B
|
|
from diagrams import Diagram
|
|
from diagrams.aws.compute import EC2
|
|
from diagrams.aws.database import RDS
|
|
from diagrams.aws.network import ELB
|
|
|
|
with Diagram("test_2", show=False, direction="TB"):
|
|
ELB("lb") >> [EC2("ワーカー1"),
|
|
EC2("작업자 2를"),
|
|
EC2("робітник 3"),
|
|
EC2("worker4"),
|
|
EC2("työntekijä 4")] >> RDS("events")
|