Summary: Use the Azure Resource Manager cmdlets to get the public IP address of an Azure virtual machine.
How can I get the public IP address information for an Azure Resource Manager virtual machine (VM)?
All you need to do is use Get-AzureRmVm to find the VM and pass it to Get-AzureRmPublicIPAddress as in the following example:
Get-AzureRmVM -ResourceGroupName ‘HSG-ResourceGroup’ -Name ‘HSG-LinuxVM’ | Get-AzureRmPublicIpAddress
It doesn’t work
Error : The Resource ‘Microsoft.Network/publicIPAddresses/myVM’ under resource group ‘myGroup’ was not found
Answer doesn’t work.
PS C:\Users\> Get-azureRMvm -ResourceGroupName demo -Name centos|Get-AzureRmPublicIpAddressGet-AzureRmPublicIpAddress : The Resource ‘Microsoft.Network/publicIPAddresses/centos’ under resource group ‘demo’ wasnot found.StatusCode: 404ReasonPhrase: Not FoundOperationID : ‘6505ce86-42ff-413a-b1e8-fc66893a1a25’At line:1 char:52+ … eRMvm -ResourceGroupName demo -Name centos|Get-AzureRmPublicIpAddress+ ~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo : CloseError: (:) [Get-AzureRmPublicIpAddress], NetworkCloudException+ FullyQualifiedErrorId : Microsoft.Azure.Commands.Network.GetAzurePublicIpAddressCommand
Doens’t work, sir.