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 applicationsThe AWS ECR registry does not enforce immutable tags.
Set image_tag_mutability
attribute to IMMUTABLE
.
resource "aws_ecr_repository" "ecr_repo" {
name = "test"
image_tag_mutability = "IMMUTABLE"
}
Set Properties.ImageTagMutability
attribute to IMMUTABLE
.
JSON example configuration:
{
"Type": "AWS::ECR::Repository",
"Properties": {
"RepositoryName" : "test-repository",
"ImageTagMutability": "IMMUTABLE"
}
# other re quired fields here
}
YAML example configuration:
Type: AWS::ECR::Repository
Properties:
RepositoryName: "test-repository"
ImageTagMutability: "IMMUTABLE"
# other required fields here