https://github.com/alvarogarcia7/learnstep-functions-workshop-aws
Practicing step functions in AWS using the Serverless framework. A workshop by @vgaltes
https://github.com/alvarogarcia7/learnstep-functions-workshop-aws
aws aws-lambda aws-lambda-pipeline lambda serverless serverless-framework step-functions vgaltes workshop
Last synced: about 1 year ago
JSON representation
Practicing step functions in AWS using the Serverless framework. A workshop by @vgaltes
- Host: GitHub
- URL: https://github.com/alvarogarcia7/learnstep-functions-workshop-aws
- Owner: alvarogarcia7
- Created: 2017-08-03T18:11:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-03T18:11:34.000Z (over 8 years ago)
- Last Synced: 2025-01-10T22:49:40.389Z (over 1 year ago)
- Topics: aws, aws-lambda, aws-lambda-pipeline, lambda, serverless, serverless-framework, step-functions, vgaltes, workshop
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Set up the environment:
```bash
alias sls="./node_modules/serverless/bin/serverless"
```
Deploy:
```
sls deploy
```
Invoke:
```bash
sls invoke stepf --name rpg --data '"hello"'
```
outputs something like:
```
{ executionArn: 'arn:aws:states:eu-west-1:815886228738:execution:RpgStepFunctionsStateMachine-FR4OKHXG1E9U:0db4de16-0c34-422d-b562-6ffbe9e12b95',
stateMachineArn: 'arn:aws:states:eu-west-1:815886228738:stateMachine:RpgStepFunctionsStateMachine-FR4OKHXG1E9U',
name: '0db4de16-0c34-422d-b562-6ffbe9e12b95',
status: 'SUCCEEDED',
startDate: 2017-08-03T18:04:25.266Z,
stopDate: 2017-08-03T18:04:25.304Z,
input: '"hello"',
output: '"hello"' }
```