An Azure service that is used to provision Windows and Linux virtual machines.
@Johan Somers , please go through this similar ask answered by me. Here are the commands to delete those ghosted nics,
Get-AzNetworkInterface | where-object { $_.VirtualMachine -eq $null } | ft name
Get-AzNetworkInterface | where-object { $_.VirtualMachine -eq $null } | Remove-AzNetworkInterface -Force
----------
Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.