diff --git a/features/cloudformation/step_definitions/cloudformation.js b/features/cloudformation/step_definitions/cloudformation.js index 11e2e00110fd7..11966473d4a4b 100644 --- a/features/cloudformation/step_definitions/cloudformation.js +++ b/features/cloudformation/step_definitions/cloudformation.js @@ -14,7 +14,8 @@ Given("I create a CloudFormation stack with name prefix {string}", function ( this.templateBody = '{"Resources":{"member":{"Type":"AWS::SQS::Queue"}}}'; const params = { TemplateBody: this.templateBody, - StackName: this.stackName + StackName: this.stackName, + EnableTerminationProtection: true }; this.request(null, "createStack", params, callback, false); });