@Abdelrahman Eid The error message “Microsoft Purview account 'xxxxxx' failed to provision. Error: Unknown internal exception” generally indicates an issue with the backend provisioning process, potentially triggered by the firewall configuration changes.
Here are a few things you can try:
- Wait and Monitor: Sometimes, changes to firewall or network settings can cause temporary inconsistencies in the account’s state. We've seen cases where the error clears up after a few hours or a day. Keep checking the provisioning state in the Azure portal.
- Use Azure CLI to Force Configuration Reset: Try reapplying the public network access setting using Azure CLI to ensure the changes are properly submitted:
Replace with your actual values. This can help if the portal UI change didn’t apply cleanly.az purview account update \ --name <your-account-name> \ --resource-group <your-resource-group> \ --public-network-access Enabled
- Check Provisioning State Manually: Run the following to verify current status
Look for the provisioningState field — if it's still in “Failed”, the system may still be attempting to recover.az purview account show \ --name <your-account-name> \ --resource-group <your-resource-group>
I hope this information helps. Please do let us know if you have any further queries.
Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues.