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 applicationsServices deployed in the network will not benefit from advanced DDoS protection features such as attack alerting and analytics.
Set properties.enableDdosProtection
to true
.
Set ddos_protection_plan.enable
attribute to true
.
resource "azurerm_virtual_network" "allow" {
name = "example516-network"
location = azurerm_resource_group.example516.location
resource_group_name = azurerm_resource_group.example516.name
address_space = ["10.0.0.0/16"]
dns_servers = ["10.0.0.4", "10.0.0.5"]
ddos_protection_plan {
id = azurerm_network_ddos_protection_plan.example516.id
enable = true
}
subnet {
name = "subnet1"
address_prefix = "10.0.1.0/24"
}
subnet {
name = "subnet2"
address_prefix = "10.0.2.0/24"
security_group = azurerm_network_security_group.example516.id
}
tags = {
environment = "Production"
}
}