Deleted Gokaddal Resources and Resource Group Accidently from my Azure subscription "MERKADO RHA TECHNOLOGY PRIVATE LIMITED"

Sharad Gogna 0 Reputation points
2026-07-30T19:15:02.71+00:00

Deleted Gokaddal Resources and Resource Group Accidently from my Azure subscription "MERKADO RHA TECHNOLOGY PRIVATE LIMITED" with domain name "merkadorha.com". Need help to retrieve them.

Azure Backup
Azure Backup

An Azure backup service that provides built-in management at scale.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Jose Benjamin Solis Nolasco 9,981 Reputation points Volunteer Moderator
    2026-07-30T20:40:19+00:00

    Welcome to Microsoft Q&A

    Hello @Sharad Gogna , I hope you are doing well.

    Azure does not support restoring a deleted Resource Group. Once a resource group is deleted, all resources within it are also deleted and cannot be recovered as a group. However, some individual resources may still be recoverable depending on their configuration and retention policies.

    What Can Be Recovered:

    1. Key Vaults:
      • If soft delete and purge protection were enabled, you can restore them using: az keyvault recover --name <vault-name>
        1. Storage Accounts:
    • If deleted within the retention window (usually 14 days), restore via Azure Portal:

    YAML

      Azure Portal → Storage Accounts → Restore deleted account
    

    Reference: Soft delete for Azure Storage

    1. Other Services (SQL, Cosmos DB, Backup-enabled resources)

    What Cannot Be Recovered:

    • Entire Resource Group
    • Container Apps, Container App Environments, Role Assignments, and most monitoring resources,these must be recreated manually or redeployed using ARM/Bicep/Terraform templates.

    Below are recommended actions to redeploy resources:

    If you have ARM templates or Bicep files, redeploy resources

    PowerShell

    New-AzResourceGroupDeployment -ResourceGroupName <new-RG> -TemplateFile <template-path>
    
    

    As an administrator, you can lock an Azure subscription, resource group, or resource to protect them from accidental user deletions and modifications. The lock overrides any user permissions and Enable soft delete and Azure Backup for critical services

    Reference: https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/lock-resources?tabs=json and https://learn.microsoft.com/en-us/azure/backup/backup-azure-security-feature-cloud?tabs=azure-portal

    If my answer helped you, please consider marking it as accepted. This helps others in the community find similar solutions.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.