Skip to content

Commit

Permalink
fix(aws): add missing sqs service without subservice
Browse files Browse the repository at this point in the history
  • Loading branch information
puchy22 committed Jan 3, 2025
1 parent 89620a9 commit 150b6b5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion prowler/providers/aws/aws_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,14 @@ def get_checks_from_input_arn(self) -> set:
# Handle if there are audit resources so only their services are executed
if self._audit_resources:
# TODO: this should be retrieved automatically
services_without_subservices = ["guardduty", "kms", "s3", "elb", "efs"]
services_without_subservices = [
"guardduty",
"kms",
"s3",
"elb",
"efs",
"sqs",
]
service_list = set()
sub_service_list = set()
for resource in self._audit_resources:
Expand Down

0 comments on commit 150b6b5

Please sign in to comment.