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