-
Notifications
You must be signed in to change notification settings - Fork 189
Description
Describe the bug
A clear and concise description of what the bug is.
The format of the json
files that are used by azure-cli to store the access tokens has changed. Therefore the AzureCliCredentials
fails to parse the tokens that are used for logging in using a service principal.
$ az --version
azure-cli 2.39.0
core 2.39.0
telemetry 1.0.6 *
Dependencies:
msal 1.18.0b1
azure-mgmt-resource 21.1.0b1
Python location '/opt/homebrew/Cellar/azure-cli/2.39.0/libexec/bin/python'
Extensions directory '/Users/mriezebosch/.azure/cliextensions'
Python (Darwin) 3.10.6 (main, Aug 11 2022, 13:36:31) [Clang 13.1.6 (clang-1316.0.21.2.5)]
Legal docs and information: aka.ms/AzureCliLegal
Old format & location:
cat ~/.azure/accessTokens.json
[
{
"servicePrincipalTenant": "** GUID **",
"servicePrincipalId": "** GUID **",
"accessToken": "** TOKEN **"
}
]
New format & location:
cat ~/.azure/service_principal_entries.json
[
{
"tenant": "** GUID **,
"client_id": "** GUID **",
"client_secret": "** TOKEN **"
}
]#
Exception or Stack Trace
Add the exception log and stack trace if available
To Reproduce
Steps to reproduce the behavior:
- Upgrade azure-cli
az logout
(to clear the~/.azure
folder)az login --service-principal -u '** GUID **' -p '** TOKEN **' --tenant '** GUID **'
- Use
AzureCliCredentials.Create()
Code Snippet
Add the code snippet that causes the issue.
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Setup (please complete the following information):
- OS: [e.g. iOS]
- IDE : [e.g. IntelliJ]
- Version of the Library used
Additional context
Add any other context about the problem here.
https://github.com/Azure/azure-libraries-for-net/blob/master/src/ResourceManagement/ResourceManager/Authentication/AzureCliCredentials.cs#L45
Information Checklist
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issuer as an incomplete report
- Bug Description Added
- Repro Steps Added
- Setup information Added