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

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 ID Status Bias Status
2025-08-17 00:01 #83 in_progress ✅ Clean
2025-07-13 21:37 #48 completed ❌ Biased
2025-07-12 23:44 #41 in_progress ❌ 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