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 applicationsAPI Gateway will accept HTTP methods without authorization so anyone could potentially access resources behind the gateway.
Set authorization
attribute to value other than NONE
.
resource "aws_api_gateway_method" "any" {
rest_api_id = aws_api_gateway_rest_api.this.id
resource_id = aws_api_gateway_resource.this.id
http_method = "ANY"
authorization = "AWS_IAM"
Set Properties.AuthorizationType
attribute to value other than NONE
.