Created
November 28, 2018 11:05
-
-
Save arvearve/153c3dabc442f772c7df8298cabd9670 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
digraph dependencies { | |
Log -> "AWS DB" | |
"AWS DB" -> "Migrations" -> Docker; | |
Log -> "Users resource access" -> Auth; | |
Docker -> "Measures resource access" -> "Measures manager"; | |
"Actuator resource access" -> "Actuator Manager"; | |
Docker -> "Customer resource access" -> "Measures manager"; | |
"Prices resource access" -> "Consumption Engine"; | |
"Customer resource access" -> "Consumption Engine"; | |
"Sensors resource access" -> "Consumption Engine"; | |
"AWS PUB/SUB" -> "Notification Manager"; | |
"Consumption Engine" -> "Notification Manager"; | |
"Measures Manager" -> "Measures Admin Webapp"; | |
"Measures Manager" -> "Main WebApp"; | |
"Actuator Manager" -> "Main WebApp"; | |
"Notification Manager" -> "Main WebApp"; | |
"Consumption Engine" -> "Main WebApp"; | |
"Notification Manager" -> "Cron"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment