I have created a deployment on ACI with Azure ML service, and its status is healthy.
When deploying, I set auth_enabled=True
, so that the service requires authorization keys to respond.
I can get the service auth keys for that deployment in my Azure ML service workspace ws
in a Python console via
from azureml.core.webservice import Webservice
services = Webservice.list(ws)
services[0].get_keys()
However, it would be convenient to access to this information through Azure Portal or the Cloud Shell.
In Azure Portal (differently to what happens for AKS) there's no auth fields shown, also when accessing Advanced Settings by trying to edit the deployment:
Can you suggest ways to access those credentials?