serverless-child-stack-manager

Removes or deploys one or more related CloudFormation stacks when running 'serverless remove' or 'serverless deploy'.
This can be useful to manage tenant resources in multi-tenant apps, when each tenant has a corresponding stack. Creating the tenant stacks is expected to be done by your application, as part of your tenant subscription process, using a common prefix for CloudFormation stack names. The serverless-child-stack-manager
plugin then handles upgrade and removal of those tenant stacks as part of your main serverless deployment.
Installation
npm install serverless-child-stack-manager --save-dev
Compatibility with Serverless Framework
Version 2.0.3 is compatible with Serverless Framework v3, but it uses the legacy logging interface. Version 3.0.0 and later uses the new logging interface.
serverless-child-stack-manager | Serverless Framework |
---|
≤ v1.3.0 | v1.x |
v2.x | v2.x, v3.x |
≥ v3.0.0 | v3.x |
Usage
Add the following to your serverless.yml
:
plugins:
- serverless-child-stack-manager
custom:
serverless-child-stack-manager:
childStacksNamePrefix: my-stack-prefix
removalPolicy: remove
upgradeFunction: ${self:service.name}-${self:provider.stage}-stackUpdate
A complete description of configuration options here.