Configuring Outbound Access Restrictions for Azure AI Service
Mithila Lishan
111
Reputation points
I have created an Azure AI service and need to restrict its outbound access. According to the documentation, the following Azure CLI command must be executed
az rest -m patch -u /subscriptions/{subscription ID}/resourceGroups/{resource group}/providers/Microsoft.CognitiveServices/accounts/{account name}?api-version=2021-04-30 -b '{"properties": { "restrictOutboundNetworkAccess": true, "allowedFqdnList": [ "microsoft.com" ] }}'
Instead of using the CLI command, is it possible to configure the same settings through the Azure portal user interface?
Additionally, if I only want to restrict outbound traffic for app services, should I use "azurewebsites.net"
instead of "microsoft.com"
in the configuration?
Sign in to answer