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
⚠️ missing_linux_example
Summary:
The documentation provides both Azure PowerShell and Azure CLI examples for network configuration tasks, but PowerShell commands are consistently listed before Azure CLI commands. There are no Linux shell or Bash-specific examples, and the documentation does not mention Linux-native tools or patterns (such as Bash scripting or Linux command-line utilities) for network management. The focus on PowerShell and the ordering of examples may give the impression of a Windows-centric approach, despite HDInsight clusters themselves being Linux-based.
Recommendations:
  • Alternate the order of PowerShell and Azure CLI examples, or present Azure CLI (which is cross-platform) first, especially since HDInsight clusters are Linux-based.
  • Explicitly mention that Azure CLI commands can be run natively on Linux, macOS, and Windows, and provide Bash script snippets where appropriate.
  • Include references or examples using Linux-native tools (e.g., curl, dig, nslookup) for network diagnostics alongside Azure CLI/PowerShell.
  • Clarify that PowerShell is available cross-platform, but highlight Azure CLI as the primary tool for Linux users.
  • Where possible, provide context or links for Linux users on installing and using Azure CLI and other relevant tools.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-09-11 00:00 #108 completed ✅ Clean
2025-08-11 00:00 #77 completed ✅ Clean
2025-08-10 00:00 #76 completed ✅ Clean
2025-08-09 00:00 #75 completed ✅ Clean
2025-08-08 00:00 #74 completed ✅ Clean
2025-08-07 00:00 #73 completed ✅ Clean
2025-08-06 00:00 #72 completed ✅ Clean
2025-08-05 00:00 #71 completed ✅ Clean
2025-08-03 00:00 #69 completed ✅ Clean
2025-08-01 00:00 #67 completed ✅ Clean
2025-07-31 00:00 #66 completed ✅ Clean
2025-07-30 00:00 #65 completed ✅ Clean
2025-07-29 00:01 #64 completed ✅ Clean
2025-07-28 00:00 #63 completed ✅ Clean
2025-07-27 00:00 #62 completed ✅ Clean
2025-07-26 00:01 #61 completed ✅ Clean
2025-07-25 00:00 #60 completed ✅ Clean
2025-07-24 00:00 #59 completed ✅ Clean
2025-07-23 00:00 #58 completed ✅ Clean
2025-07-22 00:01 #57 completed ✅ Clean
2025-07-21 00:00 #56 completed ✅ Clean
2025-07-19 13:51 #54 completed ✅ Clean
2025-07-13 21:37 #48 completed ❌ Biased
2025-07-12 23:44 #41 in_progress ❌ Biased
2025-07-09 13:09 #3 cancelled ✅ Clean
2025-07-08 04:23 #2 cancelled ❌ Biased

Flagged Code Snippets

Get-AzNetworkSecurityGroup -ResourceGroupName "RESOURCEGROUP"
Get-AzRouteTable -ResourceGroupName "RESOURCEGROUP"
$clusterNICs = Get-AzNetworkInterface -ResourceGroupName "RESOURCEGROUP" | where-object {$_.Name -like "*node*"} $nodes = @() foreach($nic in $clusterNICs) { $node = new-object System.Object $node | add-member -MemberType NoteProperty -name "Type" -value $nic.Name.Split('-')[1] $node | add-member -MemberType NoteProperty -name "InternalIP" -value $nic.IpConfigurations.PrivateIpAddress $node | add-member -MemberType NoteProperty -name "InternalFQDN" -value $nic.DnsSettings.InternalFqdn $nodes += $node } $nodes | sort-object Type