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 applicationsIf someone gains unauthorized access to the cache storage location, the contents will be readable, which may disclose sensitive information.
Set the settings.cache_data_encrypted
attribute to true
.
resource "aws_api_gateway_method_settings" "allowed" {
rest_api_id = aws_api_gateway_rest_api.example.id
stage_name = aws_api_gateway_stage.example.stage_name
method_path = "*/*"
settings {
cache_data_encrypted = true
}
}
Set Properties.StageDescription.CacheDataEncrypted
attribute to true
.