This template allows you to discover a private IP for a NIC dynamically. It passes the private IP of NIC0 to VM1 using custom script extensions which writes it to a file on VM1.
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
scaleNumber | Number of VMs to deploy |
newStorageAccountName | Name of new storage account |
storageAccountType | Type of storage account |
vmName | Name of the VM |
vmSize | Size of the VM |
imagePublisher | Image Publisher |
imageOffer | Image Offer |
imageSKU | Image SKU |
adminUsername | VM Admin Username |
adminPassword | VM Password |
customScriptFilePath | Path to the download the custom script from |
customScriptCommandToExecute | Command to execute on the VM |
location | Location for all resources. |
Use the template
PowerShell
New-AzureRmResourceGroupDeployment -Name <deployment-name> -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-discover-private-ip-dynamically/azuredeploy.jsonInstalling and configuring Azure PowerShell
Command line
azure config mode armInstalling and configuring the Azure cross-platform command-line interface
azure group deployment create <my-resource-group> <my-deployment-name> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-discover-private-ip-dynamically/azuredeploy.json