-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added logic to load locations and VM sku's from json files (#444)
* Change to load sku's and filter on location * Added locations, skufamily and compute type logic * Fixes a few testing issues with flow of options * tested and cleanup for PR * testing update * Added custom selection box * label rewording * check for null subscriptionid * changes from bash to sh syntax * Removing empty file * added azure login for vm sku list build * adding step timeout Co-authored-by: Mark Graham <magraham@microsoft.com> Co-authored-by: Gordon Byers <gordon.byers@microsoft.com>
- Loading branch information
1 parent
902156f
commit c98db36
Showing
9 changed files
with
2,140 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ "key": "europe", "text": "Europe", "itemType": 2}, | ||
{ "key": "WestEurope", "text": "West Europe"}, | ||
{ "key": "NorthEurope", "text": "North Europe"}, | ||
{ "key": "UKSouth", "text": "UK South"}, | ||
{ "key": "UKWest", "text": "UK West" }, | ||
{ "key": "middleeast", "text": "Middle East", "itemType": 2 }, | ||
{ "key": "UAENorth", "text": "UAE North" }, | ||
{ "key": "america", "text": "North America", "itemType": 2 }, | ||
{ "key": "CentralUS", "text": "Central US" }, | ||
{ "key": "EastUS", "text": "East US" }, | ||
{ "key": "EastUS2", "text": "East US2" }, | ||
{ "key": "WestUS", "text": "West US" }, | ||
{ "key": "WestUS2", "text": "West US2" }, | ||
{ "key": "WestCentralUS", "text": "West Central US" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{"key": "standardDSv2Family", "text": "General Purpose V2", "computeType": "gp"}, | ||
{"key": "standardDDSv4Family", "text": "General Purpose V4", "computeType": "gp"}, | ||
{"key": "standardFSv2Family", "text": "Compute Optimized","computeType": "gp"}, | ||
{"key": "standardBSFamily", "text": "Burstable (dev/test)","computeType": "gp"} | ||
] |
Oops, something went wrong.