Last active
August 28, 2020 11:35
-
-
Save baiyongzhen/624643e89f62190c433604af5f56e3b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*-coding:utf-8-*- | |
from diagrams import Cluster, Diagram, Edge | |
from diagrams.aws.network import VPC | |
from diagrams.aws.network import ELB | |
from diagrams.aws.network import Route53 | |
from diagrams.aws.network import CF | |
from diagrams.aws.compute import EC2 | |
from diagrams.aws.general import User, Users | |
from diagrams.aws.management import Cloudwatch | |
with Diagram("hangul test", show=False) as diag: | |
users = Users('Users') | |
route53 = Route53("Route53") | |
cf = CF("클라우드 프론트") | |
alb = ELB("ALB") | |
ec2 = EC2("EC2") | |
cloudwatch = Cloudwatch('CloudWatch') | |
users >> route53 >> cf >> alb >> ec2 >> cloudwatch | |
diag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment