in ingest_suricata_rules/summary_report.py [0:0]
def lambda_handler(event, context):
response = anf.list_rule_groups()
rgs = response["RuleGroups"]
suricata_rulegroup_list = [ rg for rg in rgs if rg["Name"].startswith(suricata_rulegroup_prefix) ]
all_rulegroup_list = [ rg for rg in rgs ]
get_rulegroups_summary(suricata_rulegroup_list)