Created
December 20, 2017 16:14
-
-
Save dzimine/94f1a6dc1ba21b79ad09b24711a855b8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ./stepfunction.yml | |
# | |
# StepFunction workflow definition file. | |
# Included in `serverless.yml`, look there for variables definitions | |
Comment: "Community sign-up workflow" | |
StartAt: RecordDB | |
States: | |
RecordDB: | |
Type: Task | |
Resource: arn:aws:lambda:${self:custom.region}:${self:custom.private.accountId}:function:${self:service}-${self:custom.stage}-RecordDB | |
Next: RecordAC | |
ResultPath: $.results.RecordDB | |
RecordAC: | |
Type: Task | |
Resource: arn:aws:lambda:${self:custom.region}:${self:custom.private.accountId}:function:${self:service}-${self:custom.stage}-RecordAC | |
Next: InviteSlack | |
ResultPath: $.results.RecordAC | |
InviteSlack: | |
Type: Task | |
Resource: arn:aws:lambda:${self:custom.region}:${self:custom.private.accountId}:function:${self:service}-${self:custom.stage}-InviteSlack | |
ResultPath: $.results.InviteSlack | |
End: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment