From 94893b8c4e76e8754f301cbe9bc6dc2d1fadbe47 Mon Sep 17 00:00:00 2001 From: Toni de la Fuente Date: Mon, 23 Apr 2018 15:48:55 -0400 Subject: [PATCH] fixed typo in extra74 --- checks/check_extra74 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checks/check_extra74 b/checks/check_extra74 index f8df6e5a..b2964c13 100644 --- a/checks/check_extra74 +++ b/checks/check_extra74 @@ -25,9 +25,9 @@ extra74(){ for SG_ID in $LIST_OF_SECURITYGROUPS; do SG_NO_INGRESS_FILTER=$($AWSCLI ec2 describe-network-interfaces $PROFILE_OPT --region $regx --filters "Name=group-id,Values=$SG_ID" --query "length(NetworkInterfaces)" --output text) if [[ $SG_NO_INGRESS_FILTER -ne 0 ]];then - textFail "$regx: $SG_ID has not ingress filtering and it is being used!" "$regx" + textFail "$regx: $SG_ID has no ingress filtering and it is being used!" "$regx" else - textInfo "$regx: $SG_ID has not ingress filtering but it is no being used" "$regx" + textInfo "$regx: $SG_ID has no ingress filtering but it is no being used" "$regx" fi done done