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 applicationsContainer images are not scanned for malware.
Set properties.policies.quarantinePolicy.status
to enabled
.
Set quarantine_policy_enabled
to true
, or remove the attribute from the resource.
resource "azurerm_container_registry" "allowed" {
name = "containerRegistry1"
resource_group_name = var.azure_quarantine
location = var.azure_quarantine
sku = "Premium"
admin_enabled = false
quarantine_policy_enabled = true
}