diff --git a/checkov/terraform/checks/resource/aws/S3GlobalViewACL.py b/checkov/terraform/checks/resource/aws/S3GlobalViewACL.py index d8412f00deb..68bc1b38c48 100644 --- a/checkov/terraform/checks/resource/aws/S3GlobalViewACL.py +++ b/checkov/terraform/checks/resource/aws/S3GlobalViewACL.py @@ -9,7 +9,7 @@ class S3GlobalViewACL(BaseResourceCheck): def __init__(self) -> None: name = "Ensure AWS S3 bucket does not have global view ACL permissions enabled" - id = "CKV_AWS_799" + id = "CKV_AWS_374" supported_resource = ("aws_s3_bucket_acl",) categories = (CheckCategories.NETWORKING,) super().__init__(name=name, id=id, categories=categories, supported_resources=supported_resource)