diff --git a/checks/check_extra78 b/checks/check_extra78 index 4c0d6115..9bea1a3d 100644 --- a/checks/check_extra78 +++ b/checks/check_extra78 @@ -23,7 +23,6 @@ extra78(){ textInfo "Looking for RDS instances in all regions... " for regx in $REGIONS; do LIST_OF_RDS_PUBLIC_INSTANCES=$($AWSCLI rds describe-db-instances $PROFILE_OPT --region $regx --query 'DBInstances[?PubliclyAccessible==`true` && DBInstanceStatus=="available"].[DBInstanceIdentifier,Endpoint.Address]' --output text) - echo $LIST_OF_RDS_PUBLIC_INSTANCES if [[ $LIST_OF_RDS_PUBLIC_INSTANCES ]];then while read -r rds_instance;do RDS_NAME=$(echo $rds_instance | awk '{ print $1; }')