Apr 07 2020 12:46 AM
Steps:
Open Storage Account --> Firewalls and virtual networks --> Selected networks --> Add existing virtual network --> (select managed instance subnet ) then Add
if Managed Instance Subnet does not have delegate to Microsoft.Sql/managedInstances , deployment will fail with error = Found conflicts with NetworkIntentPolicy. Details: Subnet or Virtual Network cannot have resources or properties which conflict with network intent policy
delegate can be added using Azure CLI command below:
az network vnet subnet update \
--resource-group myResourceGroup \
--name mySubnet \
--vnet-name myVnet \
--delegations Microsoft.Sql/managedInstances
For more information about “Enabling subnet-delegation for existing deployments" please visit https://docs.microsoft.com/en-us/azure/sql-database/sql-database-managed-instance-enabling-service-a...
May 11 2020 04:27 PM
@Ahmad_Al_Halabi Is the same functionality available in Government Cloud?