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
⚠️
missing_linux_example
Summary:
The documentation demonstrates subtle Windows bias by using Windows-style file paths (e.g., 'c:/certs/member0_cert.pem') in CLI examples and omitting equivalent Linux file path examples. While the prerequisites mention OpenSSL on both Windows and Linux, the command examples only show Windows conventions, which may confuse or inconvenience Linux users.
Recommendations:
- Provide parallel CLI examples using Linux-style file paths (e.g., '/home/user/certs/member0_cert.pem') alongside Windows examples.
- Explicitly state that file paths should be adapted to the user's operating system.
- Consider including a note or table clarifying file path differences between Windows and Linux.
- Ensure that any referenced scripts or commands are cross-platform or provide platform-specific variants as needed.
Create pull request
Flagged Code Snippets
az confidentialledger managedccfs create --name "<your-unique-managed-ccf-name>" --resource-group "myResourceGroup" --location "southcentralus" --members "[{certificate:'c:/certs/member0_cert.pem',identifier:'it-admin',group:'IT'},{certificate:'c:/certs/member1_cert.pem',identifier:'finance-admin',group:'Finance'}]"