kumo-plugins
Advanced tools
Comparing version 0.0.31 to 0.0.32
{ | ||
"name": "kumo-plugins", | ||
"version": "0.0.31", | ||
"version": "0.0.32", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -30,5 +30,9 @@ 'use strict'; | ||
const cfHelper = this._awsHelpers.cf({region: taskDef.region}); | ||
const params = {StackName: stackName, Parameters: stackParams, TemplateBody: template}; | ||
this._logger.info(`Provisioning stack ${stackName}`); | ||
return cfHelper.provisionStack(params).then(() => cfHelper.extractOutputs(stackName)); | ||
return cfHelper.provisionStack({ | ||
StackName: stackName, | ||
Parameters: stackParams, | ||
TemplateBody: template, | ||
Capabilities: ['CAPABILITY_IAM'] | ||
}).then(() => cfHelper.extractOutputs(stackName)); | ||
} | ||
@@ -35,0 +39,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
117043
2603