serverless-cloudformation-changesets-v3

0.1.0 • Public • Published

serverless-cloudformation-changesets-v3

serverless

Serverless framework plugin to create CloudFormation ChangeSets. Originally forked with the following modifications:

  • Supports Serverless v3 new params
  • Removed Serverless@1.89 dependency and specified peer dependency on Serverless ^3.0
  • Removed dependency on Lodash

Installation

Install the plugin from npm

$ npm install --save serverless-cloudformation-changesets-v3

Add the plugin to your serverless.yml file:

plugins:
  - serverless-cloudformation-changesets-v3

Usage

CLI options

Add --changeset option to the sls deployment command, e.g.:

$ sls deploy --stage dev --region us-east-1 --param="changeset"

changeset by default uses a timestamp for ChangeSet name, otherwise you can provide optional changeset value:

$ sls deploy --stage dev --region us-east-1 --param='changeset=your-changeset-name'

YAML settings

custom:
  cf-changesets:
    changeSetName: whatever # optional
    requireChangeSet: boolean # optional defaults to false

requireChangeSet - if true, ChangeSets will be created without providing changeset option to the sls deploy command.

Notice

If CloudFormation Stack doesn't exist and custom provider.deploymentBucket was specified, this plugin will create a new stack without template, resources. The stack will be in the REVIEW_IN_PROGRESS state.

Package Sidebar

Install

npm i serverless-cloudformation-changesets-v3

Weekly Downloads

676

Version

0.1.0

License

MIT

Unpacked Size

21.9 kB

Total Files

9

Last publish

Collaborators

  • aj.stuyvenberg