mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 23:05:05 +00:00
19 lines
680 B
Plaintext
19 lines
680 B
Plaintext
CHECK_ID_check43="4.3,4.03"
|
|
CHECK_TITLE_check43="[check43] Ensure VPC Flow Logging is Enabled in all VPCs (Scored)"
|
|
CHECK_SCORED_check43="SCORED"
|
|
CHECK_ALTERNATE_check403="check43"
|
|
|
|
check43(){
|
|
# "Ensure VPC Flow Logging is Enabled in all VPCs (Scored)"
|
|
for regx in $REGIONS; do
|
|
CHECK_FL=$($AWSCLI ec2 describe-flow-logs $PROFILE_OPT --region $regx --query 'FlowLogs[?FlowLogStatus==`ACTIVE`].LogGroupName' --output text)
|
|
if [[ $CHECK_FL ]];then
|
|
for FL in $CHECK_FL;do
|
|
textPass "VPCFlowLog is enabled for LogGroupName: $FL in Region $regx" "$regx"
|
|
done
|
|
else
|
|
textFail "No VPCFlowLog has been found in Region $regx" "$regx"
|
|
fi
|
|
done
|
|
}
|