Skip to content

A Serverless plugin to selectively deploy functions based on a toDeploy boolean property

Notifications You must be signed in to change notification settings

GKosheev/serverless-selective-function-deploy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

serverless-selective-function-deploy

npm version npm downloads

This plugin enables selective deployment of AWS Lambda functions in a Serverless Framework project by setting a toDeploy boolean in the function's configuration.

toDeploy property defaults to true, meaning that functions will be deployed unless explicitly set otherwise.

  1. Add the plugin to your serverless.yml:
plugins:
  - serverless-selective-function-deploy
  1. Mark functions with toDeploy in your function configuration
functions:
  myFunction:
    handler: handler.myFunction
    toDeploy: false

About

A Serverless plugin to selectively deploy functions based on a toDeploy boolean property

Resources

Stars

Watchers

Forks

Packages

No packages published