An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
Sharath Silmaram hi )
ghost NIC / stale reference issue, u already did the right steps, now only force paths left, try deleting Public IP via latest REST API
az rest --method delete
--uri "https://management.azure.com/<PUBLIC_IP_ID>?api-version=2023-09-01"
confirm if NIC really exists (Resource Graph)
az graph query -q "Resources | where name == '360tap-newtest-shara821'"
if nothing returned its a backend ghost, try clearing dependency from subnet
az network vnet subnet update
--ids <SUBNET_ID>
--remove ipConfigurations
try move resource workaround
az resource move --destination-group <newRG> --ids <PUBLIC_IP_ID>
then delete in new RG, optional trick recreate NIC with same name sometimes breaks stale binding
final reality if NIC not visible in ARM/CLI u cant fix it client-side or at the endopen msft ticket and request backend cleanup of stale ipConfiguration reference, usually they handle these cases pretty routinely.
rgds,
Alex