The Azure Quickstart templates are currently available in English
This template set creates a multi-tier IaaS scenario with a vnet, two subnets, multiple VMs in the front end and backend subnet, NSGs, and VMs with multiNIC int he backend.
Diese ARM-Vorlage (Azure-Ressourcen-Manager) wurde von einem Mitglied der Community und nicht von Microsoft erstellt. Jede ARM-Vorlage wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Zuständigkeiten für ARM-Vorlagen, die von Mitgliedern der Community bereitgestellt und lizenziert werden, und auch nicht für deren Sicherheit, Kompatibilität oder Leistung. ARM-Vorlagen aus der Community werden von keinem Microsoft-Supportprogramm oder -Dienst unterstützt und wie vorhanden ohne jegliche Gewährleistung zur Verfügung gestellt.
Parameter
Parametername | Beschreibung |
---|---|
vnetName | Name for the new VNet. |
backEndSubnetName | Name for the back end subnet. |
backEndNSGName | Name for the NSG used to allow DB access, and block Internet. |
remoteAccessNSGName | Name for the NSG used to allow remote access. |
osType | Type of OS to use for VMs: Windows or Ubuntu. |
adminUsername | Username for local admin account. |
adminPassword | Password for local admin account. |
dbCount | Number of database VMs to be deployed to the backend end subnet. |
parentRG | Name of resource group containing vnet and front end resources. |
location | Location for all resources. |
Verwenden der Vorlage
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 deploymentAzure PowerShell installieren und konfigurieren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/IaaS-Story/11-MultiNIC/azuredeploy.json
Befehlszeile
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 deploymentInstallieren und Konfigurieren der plattformübergreifenden Azure-Befehlszeilenschnittstelle
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/IaaS-Story/11-MultiNIC/azuredeploy.json