
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
serverless-step-function-sync
Advanced tools
This Serverless plugin syncs step functions from your local machine to speed up your development cycles.
First, add Serverless Step Function Sync to your project:
npm install serverless-step-function-sync --save-dev
Then inside your project's serverless.yml file add following entry to the plugins section: serverless-step-function-sync. If there is no plugin section you will need to add it to the file.
Note that the "plugin" section for serverless-step-function-sync must be at root level on serverless.yml.
It should look something like this:
plugins:
- serverless-step-function-sync
In your project root run:
sls deploy step-function --name [name of the step function] or serverless deploy step-function --name [name of the step function].
or
sls deploy step-function --id [id of the step function] or serverless deploy step-function --id [id of the step function].
If you want to resolve TableName like so
Get test:
Type: Task
Resource: arn:aws:states:::aws-sdk:dynamodb:query
Parameters:
TableName: !Ref TestTable
KeyConditionExpression: id = :id
ExpressionAttributeValues:
":id":
S: "1234"
ConsistentRead: false
ResultPath: $.test
Next: Pass
you need to set an output in cloudformation:
Resources:
TestTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: TestTable${opt:stage, 'dev'}
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: id
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
Outputs:
TestTableName:
Value: !Ref TestTable
If you want to resolve the stateMachineArn, that works simply through declaration as seen here:
RefTest:
Type: Task
Resource: arn:aws:states:::states:startExecution
Parameters:
StateMachineArn: !Ref StepMachineOne
Input:
key1: value3
key2: value2
Next: Get test
If you want to resolve the lambda arns, that works simply through declaration as seen here:
Function2:
Type: Task
Parameters:
AWS_STEP_FUNCTIONS_STARTED_BY_EXECUTION_NAME.$: $$.Execution.Name
AWS_STEP_FUNCTIONS_STARTED.$: $$.Execution.Name
Resource: !GetAtt dummy.Arn
Next: RefTest
This plugin is based on the work of notanmay and jappurohit041 at the awesome serverless-step-functions.
MIT
FAQs
Syncing a single step function for development use only
We found that serverless-step-function-sync demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.