
Explanation:
The solution does NOT meet the goal because setting auth_mode to aml_token uses tokens that expire, while the requirement specifies a non-expiring artifact. According to Azure Machine Learning documentation and the community discussion (with 3 upvotes confirming this), keys provide non-expiring authentication, whereas tokens have expiration. Therefore, the correct authentication mode for a non-expiring artifact would be key, not aml_token.
You train and register an Azure Machine Learning model. You plan to deploy the model to an online endpoint and need to ensure applications can use an authentication method with a non-expiring artifact to access the model.
Proposed Solution: Create a managed online endpoint and set the value of its auth_mode parameter to aml_token. Then, deploy the model to the online endpoint.
Does the solution meet the goal?
A
Yes
B
No
No comments yet.