使用 Powershell 在 Azure 开发测试实验室中获取 VM 的私有 IP

Get private IP of VM in Azure Dev Test Lab using Powershell

刚才我开始使用 Azure 开发测试实验室。我在实验室中使用 json 模板创建了一个虚拟机。我想使用 powershell 使用 VM 的 public IP,或者如果可以的话,我想 return 使用相同的模板。

这里的挑战是根据 DTL 概念,VM 是在一个新的资源组中创建的,而不是在您的实验室所在的资源组中。我绝对可以在门户上看到实验室 VM 资源组的名称,但我无法弄清楚如何使用 powershell 完成此操作。我正在研究自动化,所以我需要通过 powershell 来完成。

参考图片。该实验室似乎位于同一资源组中,该实验室所在的位置以绿色框显示。但是,从技术上讲,实验室虚拟机驻留在动态创建的资源组中(RG 名称模式 = 实验室名称 + 虚拟机名称 + 一些随机数字),在屏幕截图中以浅黄色显示。

嗯,一般来说,一个更优雅的解决方案,而不是蛮力是使用 Get-AzureRmResource

$Resource = Get-AzureRmResource -ResourceId "/subscriptions/$sub_GUID/resourcegroups/$RG_devlab_Name/providers/microsoft.devtestlab/labs/$LabName/virtualmachines/$VMName"
$Resource.Properties.computeId -match 'resourceGroups/(.+)/providers'
$RGName = $Matches[1]
$IP = (Get-AzureRmNetworkInterface -Name $VMName-ResourceGroupName $RGName).IpConfigurations.PrivateIpAddress

其他解决方案有帮助但不完整。我这样做 - 我正在返回模板的默认输出,即 vmId。参考模板 link

现在我们需要操作此 vmId 以获取已创建实验室 VM 的资源组的名称。

$result = New-AzureRmResourceGroupDeployment -ResourceGroupName "aatifdtlrg207912" -TemplateFile "D:\AzureDeploy.json" -TemplateParameterObject $paramValues
$VMId = $result.outputs.Values.value
$VMComputeId = (Get-AzureRmResource -Id $VMId).Properties.ComputeId
$RGNameofVM = $VMComputeId.split("/")
$RGNameofVM = $RGNameofVM[4] 
$IP = (Get-AzureRmNetworkInterface -Name $VMName -ResourceGroupName $RGNameofVM ).IpConfigurations.PrivateIpAddress

嗯,正如我们所知,对于 DevTest Labs,Powershell 没有直接的方法。您可以使用下面的 powershell 脚本通过传递虚拟机名称来获取虚拟机的私有 IP 地址。我们可以通过传递 ResourceId:

来使用 Find-AzureRmResourceGet-AzureRmResource
$vmNicdetails = Find-AzureRmResource -ResourceNameContains mytestVM | Where {$_.ResourceType -eq 'Microsoft.Network/networkInterfaces'}
$nicdetails = Get-AzureRmResource -ResourceId $vmNicdetails.ResourceId
$ipconfig = Get-AzureRmResource -ResourceId
$nicdetails.Properties.ipConfigurations.id -ApiVersion '2017-03-01'
$ipconfig.Properties.privateIPAddress