feat: add "coming soon" regions to allow list (#5107)

This commit is contained in:
Matt Boersma 2023-08-24 13:13:17 -06:00 коммит произвёл GitHub
Родитель 35373277dc
Коммит 7b61192b1f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 57 добавлений и 0 удалений

Просмотреть файл

@ -46,6 +46,12 @@ var (
germanyCentralName = "germanycentral"
germanyNortheastDisplayName = "Germany Northeast"
germanyNortheastName = "germanynortheast"
israelCentralDisplayName = "Israel Central"
israelCentralName = "israelcentral"
italyNorthDisplayName = "Italy North"
italyNorthName = "italynorth"
spainCentralDisplayName = "Spain Central"
spainCentralName = "spaincentral"
usDodCentralDisplayName = "US DoD Central"
usDodCentralName = "usdodcentral"
usDodEastDisplayName = "US Dod East"
@ -247,6 +253,28 @@ func (glc *LocationsCmd) run(cmd *cobra.Command, args []string) error {
Latitude: &notAvailable,
Longitude: &notAvailable,
},
// Coming soon regions
{
ID: &notAvailable,
Name: &israelCentralName,
DisplayName: &israelCentralDisplayName,
Latitude: &notAvailable,
Longitude: &notAvailable,
},
{
ID: &notAvailable,
Name: &italyNorthName,
DisplayName: &italyNorthDisplayName,
Latitude: &notAvailable,
Longitude: &notAvailable,
},
{
ID: &notAvailable,
Name: &spainCentralName,
DisplayName: &spainCentralDisplayName,
Latitude: &notAvailable,
Longitude: &notAvailable,
},
}
// Add special locations if they aren't already in the list
for _, s := range specialLocations {

Просмотреть файл

@ -108,6 +108,9 @@ func ExampleLocationsCmd_run_humanOutput() {
// eastus2euap East US 2 EUAP (Canary) N/A N/A
// germanycentral Germany Central N/A N/A
// germanynortheast Germany Northeast N/A N/A
// israelcentral Israel Central N/A N/A
// italynorth Italy North N/A N/A
// spaincentral Spain Central N/A N/A
// usdodcentral US DoD Central N/A N/A
// usdodeast US Dod East N/A N/A
// usgovarizona US Gov Arizona N/A N/A
@ -221,6 +224,27 @@ func ExampleLocationsCmd_run_jsonOutput() {
// },
// {
// "id": "N/A",
// "name": "israelcentral",
// "displayName": "Israel Central",
// "latitude": "N/A",
// "longitude": "N/A"
// },
// {
// "id": "N/A",
// "name": "italynorth",
// "displayName": "Italy North",
// "latitude": "N/A",
// "longitude": "N/A"
// },
// {
// "id": "N/A",
// "name": "spaincentral",
// "displayName": "Spain Central",
// "latitude": "N/A",
// "longitude": "N/A"
// },
// {
// "id": "N/A",
// "name": "usdodcentral",
// "displayName": "US DoD Central",
// "latitude": "N/A",

Просмотреть файл

@ -17,6 +17,7 @@ func GetAzureLocations() []string {
"australiasoutheast",
"brazilsouth",
"brazilsoutheast",
"brazilus",
"canadacentral",
"canadaeast",
"centralindia",
@ -38,6 +39,8 @@ func GetAzureLocations() []string {
"germanynorth",
"germanynortheast",
"germanywestcentral",
"israelcentral",
"italynorth",
"japaneast",
"japanwest",
"jioindiacentral",
@ -48,12 +51,14 @@ func GetAzureLocations() []string {
"northeurope",
"norwayeast",
"norwaywest",
"polandcentral",
"qatarcentral",
"southafricanorth",
"southafricawest",
"southcentralus",
"southeastasia",
"southindia",
"spaincentral",
"swedencentral",
"switzerlandnorth",
"switzerlandwest",