Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
applied another fix kv name
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelm-bink committed Oct 26, 2023
1 parent f2fa1fe commit ce0b096
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stonegate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
kv_client = SecretClient(vault_url=settings.keyvault_url, credential=credential)
base_url=settings.stonegate_atreemo_url;
stonegate_auth = {
"username": json.loads(kv_client.get_secret("stonegate-outbound-compound-key-join").value)["username"],
"password": json.loads(kv_client.get_secret("stonegate-outbound-compound-key-join").value)["password"],
"username": json.loads(kv_client.get_secret("stonegate-outbound-compound-key-join").value)["data"]["username"],
"password": json.loads(kv_client.get_secret("stonegate-outbound-compound-key-join").value)["data"]["password"],
}


Expand Down

0 comments on commit ce0b096

Please sign in to comment.