Skip to content

Instantly share code, notes, and snippets.

@simonbrowndotje
Created September 9, 2020 15:37
Show Gist options
  • Save simonbrowndotje/25abe127d27f41e3d78b7be7ca9be4ec to your computer and use it in GitHub Desktop.
Save simonbrowndotje/25abe127d27f41e3d78b7be7ca9be4ec to your computer and use it in GitHub Desktop.
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