Need to create azure keyvault client using proxy setting. Organigation current network policy allowing the calls only via organization proxy using port 80.
current code
credentials = DefaultAzureCredential()
client = SecretClient(vault_url='https://XXX.vault.azure.net', credential=credentials)
print(f'Keyvalut connected')
password = client.get_secret('keytosomesecreat')
print('password')
When we do the call we are getting "Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"
Need to do this call via org proxy so we tried to add proxy to the editor(pycharm) and there is no option to add proxy while creating key vault client too.
Is there any way that we can do the call via proxy?