-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
False positive: CKV_AWS_19: "Ensure all data stored in the S3 bucket is securely encrypted at rest" #452
Comments
Hi @ismailyenigul ! I think the problem is not a bad check. When scanning this block: resource "aws_s3_bucket" "my" {
bucket = "my-${lower(var.environment)}-my-${lower(var.my)}"
acl = "private"
# Delete S3 Bucket even it has some objects in it
force_destroy = "true"
server_side_encryption_configuration {
rule {
apply_server_side_encryption_by_default {
sse_algorithm = "AES256"
}
}
}
versioning {
enabled = false
}
} The difference is that the |
Cool thanks @nimrodkor |
Another check about image pull policy.
|
solved on #477 |
Describe the bug
checkov fails on encryption enabled bucket
To Reproduce
Steps to reproduce the behavior:
Version:
The text was updated successfully, but these errors were encountered: