diff --git a/lib/utils/aws/CloudFormation.js b/lib/utils/aws/CloudFormation.js index ad32163e6..83cb8ec6b 100644 --- a/lib/utils/aws/CloudFormation.js +++ b/lib/utils/aws/CloudFormation.js @@ -367,7 +367,7 @@ module.exports = function(config) { if (!stackStatus || validStatuses.indexOf(stackStatus) === -1) { let prefix = createOrUpdate.slice(0,-1); return reject(new SError( - `Something went wrong while ${prefix}ing your cloudformation`)); + `An error occurs while ${prefix}ing your cloudformation. REASON: ${stackData.Stacks[0].StackStatusReason}`)); } else { return callback(); }