There was an error while loading. Please reload this page.
1 parent 377e7e0 commit 821b7d9Copy full SHA for 821b7d9
src/main/java/org/elasticsearch/cloud/aws/InternalAwsS3Service.java
@@ -169,7 +169,9 @@ private static String getEndpoint(String region) {
169
return "s3-us-west-1.amazonaws.com";
170
} else if ("us-west-2".equals(region)) {
171
return "s3-us-west-2.amazonaws.com";
172
- } else if ("ap-southeast".equals(region)) {
+ } else if ("us-gov-west-1".equals(region)) {
173
+ return "s3-us-gov-west-1.amazonaws.com";
174
+ }else if ("ap-southeast".equals(region)) {
175
return "s3-ap-southeast-1.amazonaws.com";
176
} else if ("ap-southeast-1".equals(region)) {
177
0 commit comments