Skip to content

Commit

Permalink
enable termivation protection to cloudformation integ test (#3252)
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanZhengYP committed May 13, 2020
1 parent 1e5f443 commit b5d439c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/cloudformation/step_definitions/cloudformation.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function() {
this.Given(/^I create a CloudFormation stack with name prefix "([^"]*)"$/, function(prefix, callback) {
this.stackName = this.uniqueName(prefix);
this.templateBody = '{"Resources":{"member":{"Type":"AWS::SQS::Queue"}}}';
var params = { TemplateBody: this.templateBody, StackName: this.stackName };
var params = { TemplateBody: this.templateBody, StackName: this.stackName, EnableTerminationProtection: true };
this.request(null, 'createStack', params, callback, false);
});
};

0 comments on commit b5d439c

Please sign in to comment.