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 applicationsA single App Service Plan instance increases the risk of application unavailability.
Set sku.capacity
to 2
or more.
Set sku.capacity
attribute to 2
or more.
resource "azurerm_app_service_plan" "allowed1" {
name = "appServicePlan501v"
location = azurerm_resource_group.example501v.location
resource_group_name = azurerm_resource_group.example501v.name
sku {
tier = "Standard"
size = "S1"
capacity = 2
}
}