Skip to content

Commit c389099

Browse files
committed
Add new region support for ap-northeast-2
1 parent 5c9182f commit c389099

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.jenkins-ci.plugins</groupId>
5656
<artifactId>aws-java-sdk</artifactId>
57-
<version>1.10.26</version>
57+
<version>1.10.50</version>
5858
</dependency>
5959
</dependencies>
6060

src/main/java/com/amazonaws/codedeploy/AWSCodeDeployPublisher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class AWSCodeDeployPublisher extends Publisher {
7878
public static final long DEFAULT_TIMEOUT_SECONDS = 900;
7979
public static final long DEFAULT_POLLING_FREQUENCY_SECONDS = 15;
8080
public static final String ROLE_SESSION_NAME = "jenkins-codedeploy-plugin";
81-
public static final Regions[] AVAILABLE_REGIONS = {Regions.AP_NORTHEAST_1, Regions.AP_SOUTHEAST_1, Regions.AP_SOUTHEAST_2, Regions.EU_WEST_1, Regions.US_EAST_1, Regions.US_WEST_2, Regions.EU_CENTRAL_1, Regions.US_WEST_1, Regions.SA_EAST_1};
81+
public static final Regions[] AVAILABLE_REGIONS = {Regions.AP_NORTHEAST_1, Regions.AP_SOUTHEAST_1, Regions.AP_SOUTHEAST_2, Regions.EU_WEST_1, Regions.US_EAST_1, Regions.US_WEST_2, Regions.EU_CENTRAL_1, Regions.US_WEST_1, Regions.SA_EAST_1, Regions.AP_NORTHEAST_2};
8282

8383
private final String s3bucket;
8484
private final String s3prefix;

0 commit comments

Comments
 (0)