From f7c730ad1c96bdf88b7dc4e33854cf3868f42e32 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 20 May 2020 14:24:56 +0000 Subject: [PATCH] test: enable termination protection in CloudFormation integ test --- features/cloudformation/step_definitions/cloudformation.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/cloudformation/step_definitions/cloudformation.js b/features/cloudformation/step_definitions/cloudformation.js index 11e2e00110fd..11966473d4a4 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); });