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 PowerShell and Azure CLI examples for deploying ARM templates, but consistently lists PowerShell (a Windows-centric tool) before Azure CLI in every example. There are no Linux-specific shell examples (e.g., Bash), and the clean-up instructions reference only the Azure Portal, not command-line options. The prerequisites mention both Azure PowerShell and CLI, but PowerShell is always presented first, which may subtly prioritize Windows users.
Recommendations:
- Alternate the order of PowerShell and Azure CLI examples, or present Azure CLI examples first to better support Linux/macOS users.
- Explicitly mention that Azure CLI commands work cross-platform (Windows, Linux, macOS), and consider providing Bash-specific command examples where appropriate.
- Include command-line instructions for resource clean-up using both Azure CLI and PowerShell, not just Azure Portal steps.
- Where possible, clarify that Visual Studio Code and the Azure Resource Manager Tools extension are cross-platform.
- Add a note or section highlighting that all tasks can be performed on Linux/macOS as well as Windows.
Create pull request
Flagged Code Snippets
New-AzResourceGroupDeployment `
-Name addnameparameter `
-ResourceGroupName myResourceGroup `
-TemplateFile $templateFile `
-storageName "{your-unique-name}"
New-AzResourceGroupDeployment `
-Name addskuparameter `
-ResourceGroupName myResourceGroup `
-TemplateFile $templateFile `
-storageName "{your-unique-name}"
New-AzResourceGroupDeployment `
-Name usenondefaultsku `
-ResourceGroupName myResourceGroup `
-TemplateFile $templateFile `
-storageName "{your-unique-name}" `
-storageSKU Standard_GRS
New-AzResourceGroupDeployment `
-Name testskuparameter `
-ResourceGroupName myResourceGroup `
-TemplateFile $templateFile `
-storageName "{your-unique-name}" `
-storageSKU basic