The Azure Quickstart templates are currently available in English
This will deploy 2 virtual machines, OMS and other network resources. One virtual machine without endpoint protection and other with enpoint protection installed. Perform the virus attack by following the guidlines and execute the scenario for mitigation and prevention of a virus attack.
Ce modèle ARM (Azure Resource Manager) a été créé par un membre de la communauté et non par Microsoft. Chaque modèle ARM vous est concédé sous licence sous un contrat de licence par son propriétaire, et non par Microsoft. Microsoft ne peut pas être tenu responsable des modèles ARM fournis et concédés sous licence par les membres de la communauté, ni ne vérifie leur sécurité, leur compatibilité ou leurs performances. Les modèles ARM de la communauté ne sont pris en charge par aucun programme ou service de support Microsoft. Ils sont rendus disponibles EN L'ÉTAT sans garantie d'aucune sorte.
Paramètres
Nom du paramètre | Description |
---|---|
_artifactsLocation | this will be the location for artifacts |
_artifactsLocationSasToken | this will be the sas key to access artifacts |
location | your resources will be created in this location |
omsSku | this will be you SKU for OMS |
vNetName | this will be name of the VNET |
vNetAddressSpace | this will be address space for VNET |
subnetName | this will be name of the subnet |
subnetAddressSpace | this will be address space for subnet |
nsgNamePrefix | this will be prefix used for NSG |
pipAddressType | this will be the type of public IP address used for the VM name |
vmNamePrefix | this will be the prefix used for the VM name |
adminUserName | this will be the user name of the VMs deployed |
adminUserPassword | this will be the password of the user created on the user |
Utiliser le modèle
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstaller et configurer Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-VM-Virus-Attack-Prevention/azuredeploy.json
Ligne de commande
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstaller et configurer l'interface de ligne de commande multiplateforme Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-VM-Virus-Attack-Prevention/azuredeploy.json