About This Page
This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.
Bias Analysis
Bias Types:
⚠️
windows_first
⚠️
powershell_heavy
⚠️
missing_linux_example
Summary:
The documentation page demonstrates a Windows bias by referencing Azure PowerShell and Azure CLI as the primary credential sources, listing Azure PowerShell before other options, and not providing any Linux- or bash-specific examples or guidance. There is no mention of Linux shell usage, nor are there examples or notes about cross-platform differences in authentication or tooling.
Recommendations:
- Explicitly mention that Azure CLI and Bicep are cross-platform and can be used on Linux, macOS, and Windows.
- Provide bash or shell command examples alongside any PowerShell or Windows-centric instructions.
- When listing credential sources, avoid always listing Azure PowerShell before Azure CLI, or clarify that both are supported equally across platforms.
- Include a section or note about using Bicep and configuring credentials on Linux and macOS, highlighting any differences or additional steps.
- If referencing Visual Studio, also mention Visual Studio Code, which is cross-platform.
- Ensure that all tool references and instructions are inclusive of non-Windows environments.
Create pull request
Flagged Code Snippets
{
"cloud": {
"currentProfile": "AzureCloud",
"profiles": {
"AzureCloud": {
"resourceManagerEndpoint": "https://management.azure.com",
"activeDirectoryAuthority": "https://login.microsoftonline.com"
},
"AzureChinaCloud": {
"resourceManagerEndpoint": "https://management.chinacloudapi.cn",
"activeDirectoryAuthority": "https://login.chinacloudapi.cn"
},
"AzureUSGovernment": {
"resourceManagerEndpoint": "https://management.usgovcloudapi.net",
"activeDirectoryAuthority": "https://login.microsoftonline.us"
}
},
"credentialPrecedence": [
"AzureCLI",
"AzurePowerShell"
]
}
}