Skip to content

Commit 1074b06

Browse files
authored
test: enable termination protection in CloudFormation integ test (#1194)
1 parent 910da6a commit 1074b06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

features/cloudformation/step_definitions/cloudformation.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Given("I create a CloudFormation stack with name prefix {string}", function (
1414
this.templateBody = '{"Resources":{"member":{"Type":"AWS::SQS::Queue"}}}';
1515
const params = {
1616
TemplateBody: this.templateBody,
17-
StackName: this.stackName
17+
StackName: this.stackName,
18+
EnableTerminationProtection: true
1819
};
1920
this.request(null, "createStack", params, callback, false);
2021
});

0 commit comments

Comments
 (0)