hi & thx for join us at Q&A portal,
yeah this is same pattern as before RG stuck = backend mess, not ur config u got
- RG in deleting
- VMSS failed with
NetworkingInternalOperationError
- 409 on any action
that combo basically means Azure control plane cant clean dependencies usually its
- NIC / LB / backend pool stuck
- subnet reference not released
- VMSS instance half-deleted
so RG delete just hangs forever, u can try quick check (low chance but worth a few mins), list resources still inside
az resource list -g centralindia-app-gateway-rg
if u see leftovers try delete them manually (NICs, LB, disks), sometimes helps stop VMSS first (if possible)
az vmss deallocate ...
but since u already got failed state probably wont work, real talk once RG is in this state + networking error ur done from client side, no CLI, no portal fix, u need open support ticket category compute/network ask for backend cleanup / force delete of RG + VMSS. They will remove stuck dependencies, clear RG lock state... usually fixed pretty fast once it hits right team.
rgds,
Alex