DEV Community

Discussion on: Detecting unused Azure resources

Collapse
 
yabrun profile image
yabrun

You can also add orphaned Nic:

resources
| where type == "microsoft.network/networkinterfaces"
| where (isnull(properties.virtualMachine.id) and isnull(properties.privateEndpoint.id))
Enter fullscreen mode Exit fullscreen mode