Unable to get the values of tenant_id, client_id,client_secret which are stored in Azure Keyvault, by using library from azure.identity import ClientSecretCredential. I have installed and imported the modules azure-keyvault-secrets azure-identity but for some reason its not working. i don't want to use import DefaultCredentials. Below is my python script
from azure.identity import ClientSecretCredential
from azure.mgmt.compute import ComputeManagementClient
from azure.keyvault.secrets import SecretClient
credential = ClientSecretCredential(
tenant_id='xxxxx',
client_id='xxxxx', ##the secret id's values should pick from Keyvault #
client_secret='xxxxx'
)
subscription_id = "xxxxx"
compute_client = ComputeManagementClient(credential, subscription_id)
`````
Assist me to solve this