Pro tip: Azure Resource Graph + KQL is your best friend here.
Run this query in the portal:
```Resources | where type == 'microsoft.network/publicipaddresses' | project name, ipAddress, resourceGroup```
It’ll spit out all public IPs, no clicking required.
Load balancers and app gateways will show up too since they use public IPs under the hood.
Run this query in the portal:
```Resources | where type == 'microsoft.network/publicipaddresses' | project name, ipAddress, resourceGroup```
It’ll spit out all public IPs, no clicking required.
Load balancers and app gateways will show up too since they use public IPs under the hood.
