'use strict'; const BbPromise = require('bluebird'); const { legacy } = require('@serverless/utils/log'); module.exports = { async remove() { legacy.log('Removing Stack...'); const stackName = this.provider.naming.getStackName(); const params = { StackName: stackName, }; const customDeploymentRole = this.provider.getCustomDeploymentRole(); if (customDeploymentRole) { params.RoleARN = customDeploymentRole; } const cfData = { StackId: stackName, }; return this.provider.request('CloudFormation', 'deleteStack', params).then(() => cfData); }, async removeStack() { return BbPromise.bind(this).then(this.remove); }, };