output/20260723_081532/govviz/ALZ_20260723_081601/Enterprise-Scale/eslzArm/resourceGroupTemplates/ddosProtection.json

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "ddosName": {
            "type": "string",
            "metadata": {
                "description": "Provide a name for the DDoS protection plan"
            }
        },
        "location": {
            "type": "string",
            "metadata": {
                "description": "Provide a location for the DDoS protection plan"
            }
        }
    },
    "resources": [
        {
            "type": "Microsoft.Network/ddosProtectionPlans",
            "apiVersion": "2019-02-01",
            "name": "[parameters('ddosName')]",
            "location": "[parameters('location')]",
            "properties": {}
        }
    ],
    "outputs": {}
}