Question 3
Domain 1: Plan and Manage an Azure AI SolutionYour company processes customer support tickets and needs to deploy Azure AI Language to an environment with no internet connectivity due to strict data sovereignty requirements. The environment has Docker runtime available. What must you configure for the container to operate?
Correct answer: B
Explanation
Azure AI Language containers require explicit license acceptance and metering configuration to run offline. The container must have `Eula=accept` set and be given a billing endpoint plus API key so it can authenticate usage, since the environment has no internet connectivity.
Why each option is right or wrong
A. Set `ApiKey=none` to disable authentication
B. Set `Eula=accept` as an environment variable and provide a billing endpoint and API key
Azure AI Language containers are governed by the Microsoft Cognitive Services container terms, which require explicit acceptance of the license before startup; in practice this is done by setting the `Eula` environment variable to `accept`. Because the container runs in an isolated network, it still must be configured for metering with a billing endpoint and an API key so usage can be authenticated and recorded, even though the workload itself has no internet access.
C. Install the Azure CLI inside the container
D. Configure a VPN gateway to Azure before deployment