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 data at rest in the AppSync cache increases the risk of unauthorized access and data leakage. Ensure that data stored in the cache is encrypted at rest to protect sensitive information.
Set the at_rest_encryption_enabled
attribute to true
in the aws_appsync_api_cache
resource.
resource "aws_appsync_graphql_api" "allowed" {
authentication_type = "API_KEY"
name = "allowed1"
}
resource "aws_appsync_api_cache" "allowed1" {
api_id = aws_appsync_graphql_api.allowed.id
api_caching_behavior = "FULL_REQUEST_CACHING"
type = "SMALL"
ttl = 900
at_rest_encryption_enabled = true
transit_encryption_enabled = true
}