I would like to write an azure graph query that shows the firewall and virtual networks settings for each storage account.Under public network there are 3 possible values
- enabled for all networks
- enabled from selected virtual networks and IP addresses
- disabled
would like to project this with name,resourcegroup, typedisplayname, kind. Any help is appreciated.
You can make use of below sample KQL query to view firewall and virtual networks settings for each storage account:
Response: