Change Azure region dropdown to use azurecore API (#11131)

* Change Azure region dropdown to use azurecore API for getting display name

* Fix compile errors

* Adding a few things to the vscodeignore

* and another
This commit is contained in:
Charles Gagnon
2020-06-29 12:44:04 -07:00
committed by GitHub
parent e540096e07
commit 064ada1d2f
13 changed files with 70 additions and 90 deletions

View File

@@ -4,3 +4,6 @@ out/**
extension.webpack.config.js
tsconfig.json
yarn.lock
coverConfig.json
*.vsix
coverage

View File

@@ -286,17 +286,17 @@
{
"type": "azure_locations",
"label": "%arc.control.plane.arc.data.controller.location%",
"defaultValue": "East US",
"defaultValue": "eastus",
"required": true,
"locationVariableName": "AZDATA_NB_VAR_ARC_DATA_CONTROLLER_LOCATION",
"displayLocationVariableName": "AZDATA_NB_VAR_ARC_DATA_CONTROLLER_DISPLAY_LOCATION",
"locations": [
"East US",
"East US 2",
"Central US",
"West Europe",
"Southeast Asia",
"West US 2"
"eastus",
"eastus2",
"centralus",
"westus2",
"southeastasia",
"westeurope"
]
},
{