When I create a service principal using the az cli tool like such
az ad sp create-for-rbac --name <name>
I get all the information printed
{
"appId": "...",
"displayName": "...",
"name": "...",
"password": "...",
"tenant": "..."
}
That is all good, but how do I retrieve that information at a later point? Using
az ad sp list --display-name <name>
does give me almost what I want, but I'm missing the password. How do I retrieve the password without resetting it?
