-
Notifications
You must be signed in to change notification settings - Fork 0
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
Test errors #2
base: master
Are you sure you want to change the base?
Test errors #2
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ resource "aws_s3_bucket" "financials" { | |
# bucket does not have access logs | ||
# bucket does not have versioning | ||
bucket = "${local.resource_prefix.value}-financials" | ||
acl = "private" | ||
acl = "public" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Ensure S3 bucket has cross-region replication enabled
|
||
force_destroy = true | ||
tags = merge({ | ||
Name = "${local.resource_prefix.value}-financials" | ||
|
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.
Ensure data stored in the S3 bucket is securely encrypted at rest
Resource: aws_s3_bucket.financials | ID:
BC_AWS_S3_14
How to Fix
Description
SSE helps prevent unauthorized access to S3 buckets. Encrypting and decrypting data at the S3 bucket level is transparent to users when accessing data.Benchmarks