The Azure Quickstart templates are currently available in English
This template allows deploying a linux VM using new or existing resources for the Virtual Network, Storage and Public IP Address. It also allows for choosing between SSH and Password authenticate. The templates uses conditions and logic functions to remove the need for nested deployments.
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 |
---|---|
location | Location to for the resources. |
vmName | Name for the Virtual Machine. |
adminUsername | User name for the Virtual Machine. |
authenticationType | Type of authentication to use on the Virtual Machine. |
adminPasswordOrKey | Password or ssh key for the Virtual Machine. |
vmSize | Size for the Virtual Machine. |
storageNewOrExisting | Determines whether or not a new storage account should be provisioned. |
storageAccountName | Name of the storage account |
storageAccountType | Storage account type |
storageAccountResourceGroupName | Name of the resource group for the existing storage account |
virtualNetworkNewOrExisting | Determines whether or not a new virtual network should be provisioned. |
virtualNetworkName | Name of the virtual network |
addressPrefixes | Address prefix of the virtual network |
subnetName | Name of the subnet |
subnetPrefix | Subnet prefix of the virtual network |
virtualNetworkResourceGroupName | Name of the resource group for the existing virtual network |
publicIpNewOrExisting | Determines whether or not a new public ip should be provisioned. |
publicIpName | Name of the public ip address |
publicIpDns | DNS of the public ip address for the VM |
publicIpResourceGroupName | Name of the resource group for the public ip address |
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/201-vm-new-or-existing-conditions/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/201-vm-new-or-existing-conditions/azuredeploy.json