1.1.1 • Published 6 years ago

serverless-plugin-invoke-deployment v1.1.1

Weekly downloads
7
License
MIT
Repository
github
Last release
6 years ago

Serverless Plugin Invoke Deployment

This Plugin used to invoke automatically function after deployment.

Installation

Install with npm:

npm install --save-dev serverless-plugin-invoke-deployment

And then add the plugin to your serverless.yml file:

plugins:
  - serverless-plugin-invoke-deployment

Alternatively, install with the Serverless plugin command (Serverless Framework 1.22 or higher):

sls plugin install -n serverless-plugin-invoke-deployment

Usage

In the function definition add invokeAfterDeploy: true

functions:
  hello:
    handler: handler.hello
    invokeAfterDeploy: true

if want use input param (payload) can use detail for invokeAfterDeploy

functions:
  hello:
    handler: handler.hello
    invokeAfterDeploy:
      enabled: true
      payload:
        varA : varA
        varB : 20
        varObject:
          object1 : a
          object2 : 1
        varArray:
          - a
          - b

License

MIT license.