-
Notifications
You must be signed in to change notification settings - Fork 4
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
Adding some checkov errors to ignore #252
Conversation
|
|
@@ -10,6 +10,8 @@ resource "aws_s3_bucket" "default" { | |||
#checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource" | |||
#checkov:skip=CKV_AWS_21: "Versioning handled in Versioning configuration resource" | |||
#checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource" | |||
# Up to customer whether they have notifications enabled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This option is currently not supported in this module. The fix should be to allow to opt in for it by passing the sns topic arn.
@@ -232,6 +234,8 @@ resource "aws_s3_bucket" "replication" { | |||
#checkov:skip=CKV_AWS_18: "Logging handled in logging configuration resource" | |||
#checkov:skip=CKV_AWS_21: "Versioning handled in versioning configuration resource" | |||
#checkov:skip=CKV_AWS_145: "Encryption handled in encryption configuration resource" | |||
# Up to customer whether they have notifications enabled. | |||
#checkov:skip=CKV2_AWS_62: "Ensure S3 buckets should have event notifications enabled" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see my previous comment
@@ -1,4 +1,7 @@ | |||
module "s3" { | |||
# Not relecant to us | |||
#checkov:skip=CKV_AWS_300: "Ensure S3 lifecycle configuration sets period for aborting failed uploads" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment should say that this is not need in our tests.
No description provided.