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 applicationsInbound traffic is allowed to a resource from any source instead of a restricted range, and potentially everyone can access your resource.
Set startIpAddress
to specific IP range only, e.g. 192.168.1.0/24
.
Set start_ip_address
and end_ip_address
to specific IP range only, e.g. 192.168.1.1
.
resource "azurerm_synapse_firewall_rule" "allowed" {
name = "AllowAll"
synapse_workspace_id = azurerm_synapse_workspace.examplesynws.id
start_ip_address = "192.168.1.1"
end_ip_address = "192.168.1.1"
}