Skip to content

Instantly share code, notes, and snippets.

@nabinno
Last active December 30, 2019 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nabinno/5cb0f310da64992399203af52b498faa to your computer and use it in GitHub Desktop.
Save nabinno/5cb0f310da64992399203af52b498faa to your computer and use it in GitHub Desktop.

skinparam monochrome true
skinparam backgroundColor #EEEEEE

actor User as U

control VPC as V
participant CloudWatchLogs as CL
actor Lambda as L
actor Kibana as K
participant Elasticsearch as E

U -> V: request
activate U
activate V
V -> U: response
V -> CL: |Flow Log|\nsend
deactivate V

activate CL
CL -> L: execute
activate L
L -> E
activate E
L -> CL
deactivate L
deactivate CL

U -> V: request
activate V
V -> K
activate K
K <-> E
deactivate E
K -> V
deactivate K
V -> U: response
deactivate V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment