Hi Sarath Gangarapu,
I understand how frustrating it can be to see a resource persist in the Azure Portal even after its parent resource group has been deleted.
You’re running into Azure portal artifact issue: sometimes resources remain visible in the “All resources” blade even after their parent resource group has been deleted. These are not truly “live” resources; they’re orphaned entries in the portal view.
Status Message: Resource group 'rg-sg-project-0412' could not be found*.*
This suggests the entire resource group (rg-sg-project-0412) has been deleted. Run:
az resource list --name <resource-name>
If the resource group is gone, this should return nothing.
If the resource still shows up in CLI: Run:
az resource delete --ids <resource-id>
If you get the same 404, it confirms the resource is already gone. You don’t need to worry about billing or functionality — if the resource group is deleted, the resources inside are gone too. What you’re seeing is just a UI artifact. The safest way to confirm is with the CLI: if az resource list shows nothing, the resource is truly deleted.
Please accept this as an answer. Thank you for reaching out to The Microsoft Q&A Portal.