Hi all,
In Azure Resource Manager, I would like to programmatically (through PowerShell) find which VMs are associated with which IP addresses in a particular subnet. The end product would look something like this:
IP ADDRESS ----- RESOURCE NAME (ILB or VM)
10.0.0.1 ----- testVM1
10.0.0.2 ------ testILB1
10.0.0.3 ------- Available IP address
I know that in ASM there was a cmdlet Test-AzureStaticVNetIP that might have been useful for something like this.
How could I accomplish something like this for ARM?