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 applicationsAn insufficient replicas configuration might impact the availability of Cognitive Search.
Set replicaCount
to 3
or greater.
Set replica_count
to 3
or greater. Note that replica_count
can only be configured when using a standard SKU.
resource "azurerm_search_service" "allow" {
name = "example574-search-service"
resource_group_name = azurerm_resource_group.example574.name
location = azurerm_resource_group.example574.location
sku = "standard"
replica_count = 3
}