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 applicationsUnencrypted SQS queues may expose sensitive data to unauthorized parties. Enabling encryption at rest protects data by making it unreadable without the proper decryption key. This reduces the risk of data breaches and complies with data protection regulations.
Set the sqs_managed_sse_enabled
attribute to true
.
resource "aws_sqs_queue" "allowed" {
name = "allowed"
sqs_managed_sse_enabled = true
}