Skip to content

Instantly share code, notes, and snippets.

@nabinno
Last active December 30, 2019 03:27
Show Gist options
  • Select an option

  • Save nabinno/5cb0f310da64992399203af52b498faa to your computer and use it in GitHub Desktop.

Select an option

Save nabinno/5cb0f310da64992399203af52b498faa to your computer and use it in GitHub Desktop.

Revisions

  1. nabinno renamed this gist Dec 30, 2019. 1 changed file with 0 additions and 0 deletions.
  2. nabinno created this gist Dec 30, 2019.
    41 changes: 41 additions & 0 deletions uml_amazon_vpc_flow_logs.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    ![](https://raw.githubusercontent.com/nabinno/dojo/master/qwiklabs/visualizing_security_groups_with_amazon_elasticsearch_service.png)

    ```uml
    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
    ```