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 applicationsVirtual Network Network Watcher should be enabled. Network diagnostic and visualization tools available with Network Watcher help users understand, diagnose, and gain insights to the network in Azure.
Virtual Network Network Watcher
should be enabled.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.Network/virtualNetworks",
"apiVersion": "2020-11-01",
"name": "example-661-allowed1",
"location": "japanwest",
"properties": {
"addressSpace": {
"addressPrefixes": [
"10.0.0.0/16"
]
},
"subnets": [
{
"name": "default",
"properties": {
"addressPrefix": "10.0.0.0/24"
}
}
]
}
},
{
"type": "Microsoft.Network/networkWatchers",
"apiVersion": "2021-02-01",
"name": "example-661-allowed1",
"location": "japanwest",
"properties": {}
}
]
}
Virtual Network Network Watcher
should be enabled.
resource "azurerm_network_watcher" "Allowed" {
name = "NetworkWatcher_southindia"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
}
resource "azurerm_network_watcher" "Allowed2" {
name = "NetworkWatcher_centralindia"
location = "Central India"
resource_group_name = azurerm_resource_group.example.name
}