Forum Discussion
venu15
Apr 25, 2023Copper Contributor
Azure Resource Graph to get a list of IP addresses for our app services
Dear Members, i need help in the resource graph query to get the list of IP address for our app services. Can some please here on the resource graph query please.
Clive_Watson
Apr 25, 2023Bronze Contributor
Maybe start with a query like this, there are a few fields within the "properties" column to choose from.
resources
| where type == 'microsoft.web/sites'
| project name, type, kind, properties.outboundIpAddresses, properties.inboundIpAddress, properties
resources
| where type == 'microsoft.web/sites'
| project name, type, kind, properties.outboundIpAddresses, properties.inboundIpAddress, properties