Created
July 12, 2022 00:40
-
-
Save sergiolucero/e1aa4bbcd5db2b97cf58510e3d91f7a2 to your computer and use it in GitHub Desktop.
diagram EC2
This file contains hidden or 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
from diagrams import Diagram, Cluster | |
from diagrams.aws.compute import EC2 | |
from diagrams.aws.network import ELB | |
from diagrams.aws.network import Route53 | |
from diagrams.onprem.database import PostgreSQL # Would typically use RDS from aws.database | |
from diagrams.onprem.inmemory import Redis # Would typically use ElastiCache from aws.database | |
with Diagram("Simple Website Diagram", direction='LR') as diag: # It's LR by default, but you have a few options with the orientation | |
dns = Route53("dns") | |
load_balancer = ELB("Load Balancer") | |
database = PostgreSQL("User Database") | |
cache = Redis("Cache") | |
with Cluster("Webserver Cluster"): | |
svc_group = [EC2("Webserver 1"), | |
EC2("Webserver 2"), | |
EC2("Webserver 3")] | |
dns >> load_balancer >> svc_group | |
svc_group >> cache | |
svc_group >> database | |
diag |
Author
sergiolucero
commented
Jul 12, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment