Authenticating to Azure Key Vault locally using DefaultAzureCredential
问题 I am attempting to run this 'Retrieve a secret from the vault' example locally (Ubuntu 19.10) to retrieve a secret from an Azure Key Vault: from azure.keyvault.secrets import SecretClient from azure.identity import DefaultAzureCredential client = SecretClient(vault_url="https://<<vaultname>>.vault.azure.com", credential=DefaultAzureCredential()) secret = client.get_secret("<<mysecret>>") However I receive the following error: azure.core.exceptions.ClientAuthenticationError: No credential in