Skip to content

Instantly share code, notes, and snippets.

@domingoladron
Created April 12, 2020 02:56
Show Gist options
  • Save domingoladron/55540d8cfd487d749ea3c92043f9c526 to your computer and use it in GitHub Desktop.
Save domingoladron/55540d8cfd487d749ea3c92043f9c526 to your computer and use it in GitHub Desktop.
PlantUML Slightly Less Simple Component Diagram
@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