Use authentication credential secrets in Azure Machine Learning jobs

APPLIES TO: Python SDK azure-ai-ml v2 (current)

Authentication information such as your user name and password are secrets. For example, if you connect to an external database in order to query training data, you would need to pass your username and password to the remote job context. Coding such values into training scripts in clear text is insecure as it would potentially expose the secret.

The Azure Key Vault allows you to securely store and retrieve secrets. In this article, learn how you can retrieve secrets stored in a key vault from a training job running on a compute cluster.

Important

The Azure Machine Learning Python SDK v2 and Azure CLI extension v2 for machine learning do not provide the capability to set or get secrets. Instead, the information in this article uses the Azure Key Vault Secrets client library for Python.

Prerequisites

Before following the steps in this article, make sure you have the following prerequisites:

Tip

Many of the prerequisites in this section require Contributor, Owner, or equivalent access to your Azure subscription, or the Azure Resource Group that contains the resources. You may need to contact your Azure administrator and have them perform these actions.

  • An Azure subscription. If you don't have an Azure subscription, create a free account before you begin. Try the free or paid version of Azure Machine Learning.

  • An Azure Machine Learning workspace. If you don't have one, use the steps in the Create resources to get started article to create one.

  • An Azure Key Vault. If you used the Create resources to get started article to create your workspace, a key vault was created for you. You can also create a separate key vault instance using the information in the Quickstart: Create a key vault article.

    Tip

    You do not have to use same key vault as the workspace.

  • An Azure Machine Learning compute cluster configured to use a managed identity. The cluster can be configured for either a system-assigned or user-assigned managed identity.

  • Grant the managed identity for the compute cluster access to the secrets stored in key vault. The method used to grant access depends on how your key vault is configured:

  • A stored secret value in the key vault. This value can then be retrieved using a key. For more information, see Quickstart: Set and retrieve a secret from Azure Key Vault.

    Tip

    The quickstart link is to the steps for using the Azure Key Vault Python SDK. In the table of contents in the left navigation area are links to other ways to set a key.

Getting secrets

  1. Add the azure-keyvault-secrets and azure-identity packages to the Azure Machine Learning environment used when training the model. For example, by adding them to the conda file used to build the environment.

    The environment is used to build the Docker image that the training job runs in on the compute cluster.

  2. From your training code, use the Azure Identity SDK and Key Vault client library to get the managed identity credentials and authenticate to key vault:

    from azure.identity import DefaultAzureCredential
    from azure.keyvault.secrets import SecretClient
    
    credential = DefaultAzureCredential()
    
    secret_client = SecretClient(vault_url="https://my-key-vault.vault.azure.net/", credential=credential)
    
  3. After authenticating, use the Key Vault client library to retrieve a secret by providing the associated key:

    secret = secret_client.get_secret("secret-name")
    print(secret.value)
    

Next steps

For an example of submitting a training job using the Azure Machine Learning Python SDK v2, see Train models with the Python SDK v2.