I want to get public IP address for a specific virtual machine in Azure bash command line, I have used this command so far but it returns network interface information:
az vm list-ip-addresses -g dev-rg -n dev-vm
returned value:
[
{
"virtualMachine": {
"name": "dev-vm",
"network": {
"privateIpAddresses": [
"10.0.0.5"
],
"publicIpAddresses": [
{
"id": "/subscriptions/*********/resourceGroups/dev-rg/providers/Microsoft.Network/publicIPAddresses/dev-vmPublicIP",
"ipAddress": "52.142.***.***",
"ipAllocationMethod": "Dynamic",
"name": "dev-vmPublicIP",
"resourceGroup": "dev-rg"
}
]
},
"resourceGroup": "dev-rg"
}
}
]
I only need the IP address value which should be something like this: 52.142.xxx.xxx