An Azure service that is used to automate, configure, and install updates across hybrid environments.
A deleted Logic App can only be recovered in specific scenarios and within certain limits.
- If the Logic App was a Standard (single-tenant) logic app and was deleted, recovery depends on:
- Whether source control was used.
- Whether the underlying storage account still exists.
- With source control:
- For a Standard logic app on a Workflow Service Plan or App Service Environment v3, the documented recovery method is to redeploy the logic app from source control or previously downloaded artifacts.
- Without source control (Standard logic app on Workflow Service Plan):
- Recovery is only possible if the storage account used by the logic app still exists.
- The documented process is:
- In the Azure portal, locate the storage account referenced by the
AzureWebJobsStorageapp setting of the logic app. - In that storage account, under Security + networking > Access keys, copy the primary connection string.
- Create a new Standard logic app with the same hosting option and pricing tier.
- Disable the new logic app.
- Under Settings > Environment variables > App settings, replace:
-
AzureWebJobsStoragewith the copied connection string. -
WEBSITE_CONTENTAZUREFILECONNECTIONSTRINGwith the same connection string. -
WEBSITE_CONTENTSHAREwith the original file share name from the storage account’s File shares.
-
- Recreate or fix any connections and access policies as needed, then restart the logic app.
- In the Azure portal, locate the storage account referenced by the
- Note: Run history and original Request trigger callback URLs are not recoverable.
- If the Logic App was hosted as an App Service app and actually deleted as an app:
- It can be restored only if:
- It was not on Free/Shared tiers, and
- It was deleted within the last 30 days.
- In that case, use App Services > Manage Deleted Apps in the Azure portal to restore it, or use the Az PowerShell module.
- It can be restored only if:
- If the subscription or resources were removed when the free trial ended and:
- The logic app resource was deleted and
- The storage account or app has been purged or more than 30 days have passed, then the logic app cannot be recovered by the documented methods.
If the Logic App no longer appears under Manage Deleted Apps and the original storage account/file share are gone, the only supported option is to recreate the Logic App (ideally from source control, if available).
References: