An Azure service that is used to provision Windows and Linux virtual machines.
@Himanshu Shah No. A deleted Azure resource group (and the VM inside it) cannot be restored. Deleting a resource group permanently deletes all resources in it, and Azure does not support undo or recovery at the resource‑group level - https://stackoverflow.com/questions/42732276/how-to-restore-deleted-azure-resource-groups
- Open an Azure Support request (https://learn.microsoft.com/en-us/azure/azure-portal/supportability/how-to-create-azure-support-request) immediately. In rare cases, Microsoft Support may help depending on backend retention, but recovery is not guaranteed
- Recreate the environment using ARM/Bicep/Terraform templates if you have them
- Restore data only if individual services had backups or soft delete enabled (for example, Azure Backup for VMs, soft delete for Key Vault/Storage)
Prevention for future:
Apply Delete locks on important resource groups to avoid accidental deletion
Additonal reference - https://learn.microsoft.com/en-us/answers/questions/2262565/recover-deleted-resource-group-in-azure
If the information is helpful, please click on Upvote and Accept Answer on it.