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:
⚠️ powershell_heavy
⚠️ missing_linux_example
Summary:
The documentation provides a PowerShell example for enabling HTTP/2 support but does not include equivalent Azure CLI or ARM template examples, which are more commonly used on Linux and cross-platform environments. No Linux-specific tools or command-line examples are mentioned, and the only automation example is Windows-centric.
Recommendations:
  • Add Azure CLI examples alongside PowerShell for all configuration steps, especially for enabling HTTP/2 support.
  • Include ARM/Bicep template snippets for declarative configuration, which are platform-agnostic.
  • Explicitly mention that all features are available via Azure CLI and portal, and provide links or examples.
  • Where PowerShell is used, provide a note or tabbed code blocks to show equivalent commands for Linux/macOS users.
  • Review for any other sections where only Windows tooling is referenced and ensure Linux parity.
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-09 13:09 #3 cancelled ✅ Clean
2025-07-08 04:23 #2 cancelled ❌ Biased

Flagged Code Snippets

$gw = Get-AzApplicationGateway -Name test -ResourceGroupName hm $gw.EnableHttp2 = $true Set-AzApplicationGateway -ApplicationGateway $gw