mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
const BbPromise = require('bluebird');
|
|
const validateInput = require('./lib/validateInput');
|
|
const emptyS3Bucket = require('./lib/emptyS3Bucket');
|
|
const removeStack = require('./lib/removeStack');
|
|
|
|
const AWS = require('aws-sdk');
|
|
|
|
class AwsRemove {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options;
|
|
|
|
Object.assign(this, validateInput, emptyS3Bucket, removeStack);
|
|
|
|
this.hooks = {
|
|
'remove:remove': () => {
|
|
const config = {
|
|
region: this.options.region,
|
|
};
|
|
|
|
this.CloudFormation = new AWS.CloudFormation(config);
|
|
this.S3 = new AWS.S3(config);
|
|
BbPromise.promisifyAll(this.CloudFormation, { suffix: 'Promised' });
|
|
BbPromise.promisifyAll(this.S3, { suffix: 'Promised' });
|
|
|
|
return BbPromise.bind(this)
|
|
.then(this.validateInput)
|
|
.then(this.emptyS3Bucket)
|
|
.then(this.removeStack)
|
|
.then(() => this.serverless.cli.log('Resource removal successful!'));
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = AwsRemove;
|