Skip to content

Commit

Permalink
Update checkov/cloudformation/checks/resource/aws/LambdaServicePermis…
Browse files Browse the repository at this point in the history
…sion.py

Co-authored-by: Anton Grübel <[email protected]>
  • Loading branch information
andyloughran and gruebel authored Sep 30, 2023
1 parent b9824cc commit 2706c24
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class LambdaServicePermission(BaseResourceCheck):
def __init__(self) -> None:
name = "Ensure that AWS Lambda function permissions delegated to AWS services are limited by SourceArn or SourceAccount"
id = "CKV_AWS_293"
supported_resources = ["AWS::Lambda::Permission"]
categories = [CheckCategories.GENERAL_SECURITY, ]
supported_resources = ("AWS::Lambda::Permission",)
categories = (CheckCategories.IAM,)
super().__init__(name=name, id=id, categories=categories, supported_resources=supported_resources)

def scan_resource_conf(self, conf):
Expand Down

0 comments on commit 2706c24

Please sign in to comment.