need to fetch secrets from key vault in my local
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2023 09:46 PM
Could you please look into this if I'm missing something. Getting the below error:
azure.core.exceptions.ServiceRequestError: Bearer token authentication is not permitted for non-TLS protected (non-https) URLs.
Using below function for that.
def get_auth_creds(KVUri, keyVaultName, username, password):
print(" loading credentials for local system ")
credential = DefaultAzureCredential(connection_verify=False, exclude_shared_token_cache_credential=True)
client = SecretClient(vault_url=KVUri, credential=credential)
print("Retrieving your secret from {}.".format(keyVaultName))
user = client.get_secret(username).value
pwd = client.get_secret(password).value
return user, pwd
- Labels:
-
Local System
-
Missing

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2023 10:51 PM
Hope everything is going great.
Just wanted to check in if you were able to resolve your issue. If yes, would you be happy to mark an answer as best so that other members can find the solution more quickly? If not, please tell us so we can help you.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2023 08:06 AM
@Vidula Khanna Its done. Thanks!

