We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the 01-enviornment-setup.ps1 script, you are using not using the newest CLI 2 command. I had to update the following:
$userName = ((az account show) | ConvertFrom-JSON).user.name
Versus the depreciated command shown below, at line 65: $userName = ((az ad signed-in-user show) | ConvertFrom-JSON).UserPrincipalName
The text was updated successfully, but these errors were encountered:
givenscj
No branches or pull requests
In the 01-enviornment-setup.ps1 script, you are using not using the newest CLI 2 command. I had to update the following:
$userName = ((az account show) | ConvertFrom-JSON).user.name
Versus the depreciated command shown below, at line 65:
$userName = ((az ad signed-in-user show) | ConvertFrom-JSON).UserPrincipalName
The text was updated successfully, but these errors were encountered: