From 44d40e4f0d4477a77c26383fbf499eedc3dd55fa Mon Sep 17 00:00:00 2001 From: Shubham Shah <82979155+ShubhamShah11@users.noreply.github.com> Date: Tue, 28 Sep 2021 16:34:44 -0400 Subject: [PATCH] Update check_extra7154 --- checks/check_extra7154 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/check_extra7154 b/checks/check_extra7154 index 4c2ff3aa..9a38bd46 100644 --- a/checks/check_extra7154 +++ b/checks/check_extra7154 @@ -42,7 +42,7 @@ extra7154() { TERMINATION_ENABLED=$(echo $CFN_STACK_DETAILS | jq -r '.Stacks[].EnableTerminationProtection') ROOT_ID=$(echo $CFN_STACK_DETAILS | jq -r '.Stacks[].RootId') if [[ $ROOT_ID != null && $TERMINATION_ENABLED == "false" ]]; then - textFail "$regx: $stack is a nested stack, enable termination protection on the root stack $ROOT_ID" "$regx" "$stack" "$ROOT_ID" + textInfo "$regx: $stack is a nested stack, enable termination protection on the root stack $ROOT_ID" "$regx" "$stack" "$ROOT_ID" elif [[ $TERMINATION_ENABLED == "true" ]]; then textPass "$regx: Cloudformation stack $stack has termination protection enabled" "$regx" "$stack" else