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
""" An example use of the diagrams module to create an architecture diagram | |
similar to 'Reference Architecture: Cross Account AWS CodePipeline': | |
https://github.com/awslabs/aws-refarch-cross-account-pipeline | |
""" | |
from diagrams import Cluster, Diagram, Edge | |
from diagrams.aws.compute import Lambda | |
from diagrams.aws.devtools import Codebuild, Codecommit, Codepipeline | |
from diagrams.aws.general import Users |