Skip to content

Commit

Permalink
Changed to indicate we're using an environment variable, not a Spring…
Browse files Browse the repository at this point in the history
… Boot configuration.
  • Loading branch information
rfc3092 committed Dec 9, 2024
1 parent dc688e5 commit a9a93f3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
public class AzureNavClientCredential extends ClientCredential {

public AzureNavClientCredential(
@Value("${azure.app.client.id:#{null}}") String clientId,
@Value("${azure.app.client.secret:#{null}}") String clientSecret
@Value("${AZURE_APP_CLIENT_ID:#{null}}") String clientId,
@Value("${AZURE_APP_CLIENT_SECRET:#{null}}") String clientSecret
) {
super(clientId, clientSecret);
}

}

0 comments on commit a9a93f3

Please sign in to comment.