Skip to content

Instantly share code, notes, and snippets.

@owfm
Last active May 9, 2020 17:08
Show Gist options
  • Save owfm/035765f7a799d4241570d286cc4fda44 to your computer and use it in GitHub Desktop.
Save owfm/035765f7a799d4241570d286cc4fda44 to your computer and use it in GitHub Desktop.
# serverless.yml
# ...
stepFunctions:
stateMachines:
promotionFlow:
events:
- http:
method: post
path: proposepromotion
name: myCompanyPromotionFlowStateMachine
definition:
Comment: "Handles the manual approval of promotions."
StartAt: ProposePromotion
States:
ProposePromotion:
Type: Task
Resource: !GetAtt [proposePromotion, Arn]
ResultPath: "$.employeeDetails"
End: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment