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 advanced auto scale and traffic management features can cause stability issues for a production workload.
Set sku.tier
to Standard
or higher.
Set sku.tier
attribute to Standard
or higher.
resource "azurerm_app_service_plan" "allowed1" {
name = "exampleappserviceplan500a1"
location = azurerm_resource_group.example500v.location
resource_group_name = azurerm_resource_group.example500v.name
kind = "Linux"
reserved = true
sku {
tier = "Standard"
size = "S1"
}
}