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 applicationsMissing metrics for API Gateway methods can hinder monitoring and analysis of API performance and usage.
Set the metrics_enabled
attribute under settings
to true
in the aws_api_gateway_method_settings
resource.
resource "aws_api_gateway_method_settings" "allow" {
rest_api_id = "vkc39lvmmb"
stage_name = "dev"
method_path = "*/*"
settings {
metrics_enabled = true
}
}