-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Preview implementation of AzureCliCredential #10092
Conversation
Can one of the admins verify this patch? |
## 1.3.1 (Unreleased) | ||
## 1.4.0b1 (Unreleased) | ||
- Added `AzureCliCredential`, which authenticates with the identity logged in | ||
to the Azure CLI. This credential is part of `DefaultAzureCredential` by |
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.
Please sync with rest of lang devs to ensure we are on the same page across langs on whether or not DAC has CLICred by default.
I highly prefer it to be enabled by default so developer doesn't have to do anything to configure it.
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.
Seems fair to me
This credential gets tokens by subprocessing the Azure CLI's
get-access-token
command, and is part ofDefaultAzureCredential
.