Created
April 12, 2020 02:56
-
-
Save domingoladron/55540d8cfd487d749ea3c92043f9c526 to your computer and use it in GitHub Desktop.
PlantUML Slightly Less Simple Component Diagram
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
@startuml | |
title ECS Fargate API and Aurora MySQL | |
cloud Internet { | |
} | |
node "ECS Cluster" { | |
node "ECS Fargate Service" { | |
node "ECS Task" { | |
[API] | |
[Log Forwarder] as LF | |
interface HTTP as PORT | |
artifact "LogFiles" as LogFiles | |
} | |
} | |
} | |
database "MySQL" { | |
[Stored Procs] | |
} | |
Internet -down-( PORT | |
[API] -up- PORT | |
LF --> LogFiles : reads | |
[API] --> LogFiles : writes | |
API <..> [Stored Procs] : calls | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment