How can I find all public facing IP addresses in Azure? or What's the best way to find all public fac

14 Replies, 1342 Views

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.

Messages In This Thread



Users browsing this thread: 2 Guest(s)