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 applicationsSet start_ip_address to specific IP range only, e.g. 192.168.1.0/24
.
Set startIpAddress to specific IP range only, e.g. 192.168.1.0/24
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.DataLakeAnalytics/accounts",
"apiVersion": "2019-11-01-preview",
"name": "example527allowed",
"location": "centralus",
"properties": {
"dataLakeStoreAccounts": [
{
"name": "dlsaex527"
}
],
"defaultDataLakeStoreAccount": "ddlsa527",
"firewallRules": [
{
"name": "allowed-ip-range",
"properties": {
"endIpAddress": "2.3.4.5",
"startIpAddress": "1.2.3.4"
}
}
]
}
}
]
}