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 applicationsPotentially everyone can access resources, which might lead to higher risk exposure.
Set properties.applicationRuleCollections.properties.rules.sourceAddresses
attribute to specific IP range only, e.g. 192.168.1.0/24
.
Set rule.source_addresses
to specific CIDR block range only, e.g. 192.168.1.0/24
.
resource "azurerm_firewall_application_rule_collection" "allowed" {
name = "testcollection"
azure_firewall_name = "test"
resource_group_name = azurerm_resource_group.example.name
priority = 100
action = "Allow"
rule {
name = "testrule"
source_addresses = [
"192.168.1.0/24",
]
target_fqdns = [
"*.google.com",
]
protocol {
port = "443"
type = "Https"
}
}
}