Skip to content

Commit

Permalink
Add some missing AWS regions (#2301)
Browse files Browse the repository at this point in the history
* Add some missing AWS regions

* Regenerate with new AWS regions
  • Loading branch information
thomas11 committed Jan 6, 2023
1 parent 682d5da commit 952e8b3
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 16 deletions.
28 changes: 24 additions & 4 deletions provider/cmd/pulumi-resource-aws/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -89873,13 +89873,21 @@
"value": "ap-south-1"
},
{
"name": "APSoutheast2",
"value": "ap-southeast-2"
"name": "APSouth2",
"value": "ap-south-2"
},
{
"name": "APSoutheast1",
"value": "ap-southeast-1"
},
{
"name": "APSoutheast2",
"value": "ap-southeast-2"
},
{
"name": "APSoutheast3",
"value": "ap-southeast-3"
},
{
"name": "CACentral",
"value": "ca-central-1"
Expand All @@ -89896,10 +89904,22 @@
"name": "EUCentral1",
"value": "eu-central-1"
},
{
"name": "EUCentral2",
"value": "eu-central-2"
},
{
"name": "EUNorth1",
"value": "eu-north-1"
},
{
"name": "EUSouth1",
"value": "eu-south-1"
},
{
"name": "EUSouth2",
"value": "eu-south-2"
},
{
"name": "EUWest1",
"value": "eu-west-1"
Expand All @@ -89913,8 +89933,8 @@
"value": "eu-west-3"
},
{
"name": "EUSouth1",
"value": "eu-south-1"
"name": "MECentral1",
"value": "me-central-1"
},
{
"name": "MESouth1",
Expand Down
9 changes: 7 additions & 2 deletions provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -3624,17 +3624,22 @@ func Provider() tfbridge.ProviderInfo {
{Value: "ap-northeast-2", Name: "APNortheast2"},
{Value: "ap-northeast-3", Name: "APNortheast3"},
{Value: "ap-south-1", Name: "APSouth1"},
{Value: "ap-southeast-2", Name: "APSoutheast2"},
{Value: "ap-south-2", Name: "APSouth2"},
{Value: "ap-southeast-1", Name: "APSoutheast1"},
{Value: "ap-southeast-2", Name: "APSoutheast2"},
{Value: "ap-southeast-3", Name: "APSoutheast3"},
{Value: "ca-central-1", Name: "CACentral"},
{Value: "cn-north-1", Name: "CNNorth1"},
{Value: "cn-northwest-1", Name: "CNNorthwest1"},
{Value: "eu-central-1", Name: "EUCentral1"},
{Value: "eu-central-2", Name: "EUCentral2"},
{Value: "eu-north-1", Name: "EUNorth1"},
{Value: "eu-south-1", Name: "EUSouth1"},
{Value: "eu-south-2", Name: "EUSouth2"},
{Value: "eu-west-1", Name: "EUWest1"},
{Value: "eu-west-2", Name: "EUWest2"},
{Value: "eu-west-3", Name: "EUWest3"},
{Value: "eu-south-1", Name: "EUSouth1"},
{Value: "me-central-1", Name: "MECentral1"},
{Value: "me-south-1", Name: "MESouth1"},
{Value: "sa-east-1", Name: "SAEast1"},
{Value: "us-gov-east-1", Name: "USGovEast1"},
Expand Down
9 changes: 7 additions & 2 deletions sdk/dotnet/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,22 @@ private Region(string value)
public static Region APNortheast2 { get; } = new Region("ap-northeast-2");
public static Region APNortheast3 { get; } = new Region("ap-northeast-3");
public static Region APSouth1 { get; } = new Region("ap-south-1");
public static Region APSoutheast2 { get; } = new Region("ap-southeast-2");
public static Region APSouth2 { get; } = new Region("ap-south-2");
public static Region APSoutheast1 { get; } = new Region("ap-southeast-1");
public static Region APSoutheast2 { get; } = new Region("ap-southeast-2");
public static Region APSoutheast3 { get; } = new Region("ap-southeast-3");
public static Region CACentral { get; } = new Region("ca-central-1");
public static Region CNNorth1 { get; } = new Region("cn-north-1");
public static Region CNNorthwest1 { get; } = new Region("cn-northwest-1");
public static Region EUCentral1 { get; } = new Region("eu-central-1");
public static Region EUCentral2 { get; } = new Region("eu-central-2");
public static Region EUNorth1 { get; } = new Region("eu-north-1");
public static Region EUSouth1 { get; } = new Region("eu-south-1");
public static Region EUSouth2 { get; } = new Region("eu-south-2");
public static Region EUWest1 { get; } = new Region("eu-west-1");
public static Region EUWest2 { get; } = new Region("eu-west-2");
public static Region EUWest3 { get; } = new Region("eu-west-3");
public static Region EUSouth1 { get; } = new Region("eu-south-1");
public static Region MECentral1 { get; } = new Region("me-central-1");
public static Region MESouth1 { get; } = new Region("me-south-1");
public static Region SAEast1 { get; } = new Region("sa-east-1");
public static Region USGovEast1 { get; } = new Region("us-gov-east-1");
Expand Down
9 changes: 7 additions & 2 deletions sdk/go/aws/pulumiEnums.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions sdk/java/src/main/java/com/pulumi/aws/enums/Region.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,22 @@ public enum Region {
APNortheast2("ap-northeast-2"),
APNortheast3("ap-northeast-3"),
APSouth1("ap-south-1"),
APSoutheast2("ap-southeast-2"),
APSouth2("ap-south-2"),
APSoutheast1("ap-southeast-1"),
APSoutheast2("ap-southeast-2"),
APSoutheast3("ap-southeast-3"),
CACentral("ca-central-1"),
CNNorth1("cn-north-1"),
CNNorthwest1("cn-northwest-1"),
EUCentral1("eu-central-1"),
EUCentral2("eu-central-2"),
EUNorth1("eu-north-1"),
EUSouth1("eu-south-1"),
EUSouth2("eu-south-2"),
EUWest1("eu-west-1"),
EUWest2("eu-west-2"),
EUWest3("eu-west-3"),
EUSouth1("eu-south-1"),
MECentral1("me-central-1"),
MESouth1("me-south-1"),
SAEast1("sa-east-1"),
USGovEast1("us-gov-east-1"),
Expand Down
9 changes: 7 additions & 2 deletions sdk/nodejs/types/enums/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,22 @@ export const Region = {
APNortheast2: "ap-northeast-2",
APNortheast3: "ap-northeast-3",
APSouth1: "ap-south-1",
APSoutheast2: "ap-southeast-2",
APSouth2: "ap-south-2",
APSoutheast1: "ap-southeast-1",
APSoutheast2: "ap-southeast-2",
APSoutheast3: "ap-southeast-3",
CACentral: "ca-central-1",
CNNorth1: "cn-north-1",
CNNorthwest1: "cn-northwest-1",
EUCentral1: "eu-central-1",
EUCentral2: "eu-central-2",
EUNorth1: "eu-north-1",
EUSouth1: "eu-south-1",
EUSouth2: "eu-south-2",
EUWest1: "eu-west-1",
EUWest2: "eu-west-2",
EUWest3: "eu-west-3",
EUSouth1: "eu-south-1",
MECentral1: "me-central-1",
MESouth1: "me-south-1",
SAEast1: "sa-east-1",
USGovEast1: "us-gov-east-1",
Expand Down
9 changes: 7 additions & 2 deletions sdk/python/pulumi_aws/_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,22 @@ class Region(str, Enum):
AP_NORTHEAST2 = "ap-northeast-2"
AP_NORTHEAST3 = "ap-northeast-3"
AP_SOUTH1 = "ap-south-1"
AP_SOUTHEAST2 = "ap-southeast-2"
AP_SOUTH2 = "ap-south-2"
AP_SOUTHEAST1 = "ap-southeast-1"
AP_SOUTHEAST2 = "ap-southeast-2"
AP_SOUTHEAST3 = "ap-southeast-3"
CA_CENTRAL = "ca-central-1"
CN_NORTH1 = "cn-north-1"
CN_NORTHWEST1 = "cn-northwest-1"
EU_CENTRAL1 = "eu-central-1"
EU_CENTRAL2 = "eu-central-2"
EU_NORTH1 = "eu-north-1"
EU_SOUTH1 = "eu-south-1"
EU_SOUTH2 = "eu-south-2"
EU_WEST1 = "eu-west-1"
EU_WEST2 = "eu-west-2"
EU_WEST3 = "eu-west-3"
EU_SOUTH1 = "eu-south-1"
ME_CENTRAL1 = "me-central-1"
ME_SOUTH1 = "me-south-1"
SA_EAST1 = "sa-east-1"
US_GOV_EAST1 = "us-gov-east-1"
Expand Down

0 comments on commit 952e8b3

Please sign in to comment.