Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi Christian,
Please run command similar to below in Azure Cloud Shell (Bash mode) to purge unused Service Association Link (SAL). Substitute SubscriptionId, Location, SubnetId. Subnet Id can be found by navigating to your subnet in portal and clicking the Copy icon next to Subnet ID
Azure CLI
az rest --method POST \
--uri "/subscriptions/<SubscriptionId>/providers/Microsoft.Web/locations/<Location>/purgeUnusedVirtualNetworkIntegration?api-version=2024-04-01" \
--body "{'subnetResourceId': '<SubnetId>'}"
You should see output similar to below:
Once you have completed the above, try the delete again. Please reply back with your results, whether positive or negative.
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP