Hi,
In this article, I will show you how you can list all the public IPs of your Azure tenant.
Please, run the following script in Azure Resource Graph Explorer:
Resources | where type contains 'publicIPAddresses' and isnotempty(properties.ipAddress) | project name, properties.ipAddress, properties.publicIPAllocationMethod | limit 100
Maxime.