Skip to content

Obsidian plugin that render AWS Step Functions graph.

Notifications You must be signed in to change notification settings

daaru00/obsidian-aws-sfn

Repository files navigation

Obsidian AWS Step Function Plugin

This Obsidian.md plugin will render Amazon State Language script into state machine graph.

Installation

Download zip archive from GitHub releases page and extract it into <vault>/.obsidian/plugins directory.

Usage

Add a code block with "asl" type:

```asl
{
  "StartAt": "HelloWorld",
  "States": {
    "HelloWorld": {
      "Type": "Pass",
      "Result": "Hello World!",
      "End": true
    }
  }
}
```

Open the preview mode:

schema

Hold CTRL when scrolling in order to control the zoom level:

zoom

Notes

This plugin mimic the AWS Toolkit for Visual Studio Code behaviour using the same "GrapheneStateGraph" library.