serverless-cloudformation-changesets-v3
v0.1.0
Published
A serverless plugin for creating CloudFormation ChangeSets, modified for Serverless v3
Downloads
3,261
Maintainers
Readme
serverless-cloudformation-changesets-v3
Serverless framework plugin to create CloudFormation ChangeSets. Originally forked with the following modifications:
- Supports Serverless v3 new params
- Removed [email protected] 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.