Remediation
Azure Portal
- Go to
Virtual networks. - Click the name of a virtual network.
- Under
Settings, clickDDoS protection. - Next to
DDoS Network Protection, clickEnable. - Provide a DDoS protection plan resource ID, or select a DDoS protection plan from the drop-down menu.
- Click
Save. - Repeat steps 1-6 for each virtual network requiring remediation.
Azure CLI
For each virtual network requiring remediation, run the following command to enable DDoS protection:
```sh
az network vnet update \
--resource-group {{resource-group-name}} \
--name {{virtual-network-name}} \
--ddos-protection true \
--ddos-protection-plan {{ddos-protection-plan-id}}
```