An Azure service that enables managed service providers, independent software vendors, and enterprise IT teams to deliver turnkey solutions through the Azure Marketplace or service catalog.
Use Azure CLI to delete the managed application directly instead of relying on the portal Delete button.
For a regular Azure Managed Application, run:
az managedapp delete \
--name <managed-app-name> \
--resource-group <resource-group-name>
Alternatively, if the managed application is a Service Fabric managed application, use:
az sf managed-application delete \
--application-name <app-name> \
--cluster-name <cluster-name> \
--resource-group <resource-group-name>
If the delete still appears to do nothing, verify:
- The name, resource group, and (for Service Fabric) cluster name are correct.
- The signed-in identity has sufficient permissions on the subscription/resource group.
- No policy or lock is blocking deletion (check resource group and subscription locks in the portal).
Once the CLI command completes successfully, the managed application will be removed even if the portal Delete button was unresponsive.
References: