Closed evelyn-ys closed 3 years ago
Fix https://github.com/Azure/azure-cli/issues/14397: az configure --list-defaults should not be case sensitive for environment variables
preparation(need Azure CLI in advance)
az configure --defaults location=eastus export AZURE_DEFAULTS_LOCATION=eastasia
test
az configure --list-defaults
results before
[ { "name": "LOCATION", "source": "AZURE_DEFAULTS_LOCATION", "value": "eastasia" }, { "name": "location", "source": "C:\\Users\\yishiwang\\.azure\\config", "value": "eastus" } ]
results after
[ { "name": "LOCATION", "source": "AZURE_DEFAULTS_LOCATION", "value": "eastasia" } ]
looks good now
Description
Fix https://github.com/Azure/azure-cli/issues/14397: az configure --list-defaults should not be case sensitive for environment variables
Testing Guide
preparation(need Azure CLI in advance)
test
results before
results after