Created
September 9, 2020 15:37
-
-
Save simonbrowndotje/25abe127d27f41e3d78b7be7ca9be4ec 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
workspace { | |
model { | |
mySoftwareSystem = softwareSystem "Software System" "My software system." { | |
a = container "FaaS A" | |
b = container "FaaS B" | |
c = container "FaaS C" | |
d = container "FaaS D" | |
e = container "FaaS E" | |
f = container "FaaS F" | |
} | |
a -> b "Uses" | |
b -> c "Uses" | |
c -> d "Uses" | |
d -> e "Uses" | |
e -> f "Uses" | |
} | |
views { | |
container mySoftwareSystem "Containers1" { | |
include a b c | |
autoLayout | |
} | |
container mySoftwareSystem "Containers2" { | |
include d e f | |
autoLayout | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment