Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs-ref-conceptual/format-output-azure-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ None None /subscriptions/.../resourceGroups/RGDEMO001/providers/Micros
None None /subscriptions/.../resourceGroups/RGDEMO001/providers/Microsoft.Compute/virtualMachines/KBDemo020 None None westus KBDemo020 None Succeeded RGDEMO001 None Microsoft.Compute/virtualMachines 36baa9-9b80-48a8-b4a9-854c7a858ece
```

One restriction of the TSV output format is that there isn't a guarantee on output ordering. The CLI makes a best effort to preserve ordering by sorting keys in the response JSON alphebetically,
One restriction of the TSV output format is that there isn't a guarantee on output ordering. The CLI makes a best effort to preserve ordering by sorting keys in the response JSON alphabetically,
and then printing their values in order for TSV output. This isn't a guarantee that the order is always identical though, since the Azure service response format may change.

In order to enforce consistent ordering, you'll need to use the `--query` parameter and the [multiselect list](query-azure-cli.md#get-multiple-values) format. When a CLI command returns a single
Expand Down
2 changes: 1 addition & 1 deletion docs-ref-conceptual/migrate-to-azure-identity.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ az account show --output table
# get access token for the default subscription
az account get-access-token

# get access toekn for a specific subscription
# get access token for a specific subscription
az account get-access-token --subscription "mySubscriptionName"
```

Expand Down