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 applicationsApplication Gateways in version 1 should be deployed with a SKU instance size of medium or large. Running production workloads on small application gateways may overload the processing capacity and lead to service unavailability.
Set properties.sku.name
to any option other than Standard_Small
.
Set sku.name
to any option other than Standard_Small
.
resource "azurerm_application_gateway" "allow2" {
name = "example-appgateway564"
resource_group_name = azurerm_resource_group.example564.name
location = azurerm_resource_group.example564.location
sku {
name = "Standard_Large"
tier = "Standard"
capacity = 2
}
}