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
Summary
The documentation provides both Azure CLI and Azure PowerShell examples for verifying results, but the PowerShell example is given equal prominence and is included directly after the CLI example. There are no explicit Linux shell (bash) or cross-platform command-line examples beyond Azure CLI, and PowerShell is a Windows-centric tool (despite cross-platform support, it is still most familiar to Windows users). There are no references to Linux-specific tools or workflows, and no mention of running commands in a Linux environment or using bash scripts.
Recommendations
  • Clearly indicate that Azure CLI commands work on both Windows and Linux, and provide bash-specific examples or notes where relevant.
  • If including PowerShell, clarify that it is available cross-platform, or provide bash equivalents for all PowerShell commands.
  • Consider adding a section or tab specifically for Linux/bash users, especially for verification and troubleshooting steps.
  • Avoid presenting PowerShell as the default or only alternative to Azure CLI; mention bash or Linux shell usage explicitly.
  • Where possible, use generic shell commands (e.g., export instead of $var=...) in addition to PowerShell syntax.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-14 00:00 #250 in_progress Biased Biased
2026-01-13 00:00 #246 completed Biased Biased
2026-01-11 00:00 #240 completed Biased Biased
2026-01-10 00:00 #237 completed Biased Biased
2026-01-09 00:34 #234 completed Biased Biased
2026-01-08 00:53 #231 completed Biased Biased
2026-01-06 18:15 #225 cancelled Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Biased Biased
2025-07-12 23:44 #41 cancelled Biased Biased

Flagged Code Snippets

    $resource_group_name=$(terraform output -raw resource_group_name)
    
    $sql_server=$(terraform output -raw sql_server_name)
    
    $sql = @{
    ResourceGroupName = $resource_group_name
    }
    Get-AzPrivateEndpoint @sql