CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsObjects are not encrypted by default when stored in the S3 bucket. Anyone with access to the destination S3 bucket will be able to read the contents of the object.
Set server_side_encryption
attribute to AES256
or aws:kms
.
# Example aws_s3_bucket_object
resource "aws_s3_bucket_object" "allowed" {
key = "allowedbucketobject"
bucket = aws_s3_bucket.b1.id
server_side_encryption = "AES256"
}
# Example aws_s3_object
resource "aws_s3_object" "allowed2" {
key = "allowed2object"
bucket = aws_s3_bucket.b1.id
server_side_encryption = "aws:kms"
}