Skip to content

Commit

Permalink
fix: get azure client secret from config (#981)
Browse files Browse the repository at this point in the history
# Description
When updating the parsing for azure configuration, the client secret got
lost, This should fix that.

# Related Issue(s)

closes #977

# Documentation

<!---
Share links to useful documentation
--->
  • Loading branch information
roeap authored Dec 3, 2022
1 parent be1073c commit 16bf4cc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rust/src/builder/azure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ static ALIAS_MAP: Lazy<HashMap<&'static str, AzureConfigKey>> = Lazy::new(|| {
("azure_storage_client_id", AzureConfigKey::ClientId),
("azure_client_id", AzureConfigKey::ClientId),
("client_id", AzureConfigKey::ClientId),
// client secret
("azure_storage_client_secret", AzureConfigKey::ClientSecret),
("azure_client_secret", AzureConfigKey::ClientSecret),
("client_secret", AzureConfigKey::ClientSecret),
// authority id
("azure_storage_tenant_id", AzureConfigKey::AuthorityId),
("azure_storage_authority_id", AzureConfigKey::AuthorityId),
Expand Down

0 comments on commit 16bf4cc

Please sign in to comment.