-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prioritize AzureCliCredential for secret-manager #2115
Prioritize AzureCliCredential for secret-manager #2115
Conversation
src/SecretManager/Microsoft.DncEng.SecretManager/ITokenCredentialProvider.cs
Show resolved
Hide resolved
I'm running the weekly build against this branch to confirm it works: #2024022911 • Prioritize AzureCliCredential for secret-manager |
src/SecretManager/Microsoft.DncEng.SecretManager/SecretManagerCredentialProvider.cs
Outdated
Show resolved
Hide resolved
|
||
public interface ITokenCredentialProvider | ||
{ | ||
public Task<TokenCredential> GetCredentialAsync(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public Task<TokenCredential> GetCredentialAsync(); | |
Task<TokenCredential> GetCredentialAsync(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interfaces don't need these
Resolves dotnet/dnceng#2084
Prioritize using AzureCliCredential to eliminate confusion in CI.