Skip to content

Commit c9236cc

Browse files
Adding germanywestcentral gwc
1 parent b3090a1 commit c9236cc

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

pkg/naming/regions/azure_region_abbriviations.go

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@ package regions
22

33
import (
44
"errors"
5+
56
"github.com/sirupsen/logrus"
67
)
78

89
var azureRegionAbbreviations = map[string]string{
910
// naming convention is region code (e.g. n as in north, one letter) and country code (e.g. eu as in europe, two letter)
10-
"northeurope": "neu",
11-
"westeurope": "weu",
12-
"francecentral": "cfr",
13-
"eastus": "eus",
14-
"westus": "wus",
15-
"centralus": "cus",
16-
"canadaeast": "eca",
11+
"northeurope": "neu",
12+
"westeurope": "weu",
13+
"francecentral": "cfr",
14+
"eastus": "eus",
15+
"westus": "wus",
16+
"centralus": "cus",
17+
"canadaeast": "eca",
18+
"germanywestcentral": "gwc",
1719
}
1820

1921
func GetAbbreviatedRegion(region string) string {

0 commit comments

Comments
 (0)