An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
Hi Iain,
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