Answer accepted by question author
Hi,
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
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 click Accept Answer and upvote if the above was helpful.
Thanks.
-TP
