Sad Tux - Windows bias detected
This page contains Windows bias

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

Detected 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.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean

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"
    ]
  }
}