paulshestakov / aws-step-functions-constructor

VSCode extension to visualize AWS step functions
MIT License
31 stars 11 forks source link

Support AWS::Serverless::StateMachine resources #17

Closed ljacobsson closed 3 years ago

ljacobsson commented 3 years ago

Just found this extension and so far it looks great!

However, I'm missing support for AWS::Serverless::StateMachine:

AWSTemplateFormatVersion: "2010-09-09"
Transform:
  - "AWS::Serverless-2016-10-31"
Resources:
  StateMachine:
    Type: AWS::Serverless::StateMachine
    Properties:
      Type: EXPRESS
      Definition:
        StartAt: MyState
        States:
        ...
ljacobsson commented 3 years ago

Adding link to docs for AWS::Serverless::StateMachine transform

paulshestakov commented 3 years ago

Thanks! Added support for definitions through SAM 🍾 Already pushed the change, please try to update extension (latest is v0.8.0)

ljacobsson commented 3 years ago

Missed the notification. That was fast!

Thanks! Will try :-)