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 applicationsPolicies with wildcard actions can perform all actions on the configured resources.
Set statement.action
attribute to specific actions, e.g. s3:ListBucket
.
Example configuration:
data "aws_iam_policy_document" "allowed_no_wildcard" {
statement {
effect = "Allow"
actions = [
"s3:ListBucket",
]
}
}
Set Action
attribute in Properties.PolicyDocument
to specific actions e.g. s3:ListBucket
.