We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5734b40 commit 36e29ceCopy full SHA for 36e29ce
src/main/java/org/elasticsearch/cloud/aws/AwsS3Service.java
@@ -121,6 +121,10 @@ public synchronized AmazonS3 client() {
121
endpoint = "s3-eu-west-1.amazonaws.com";
122
} else if ("eu-west-1".equals(region)) {
123
124
+ } else if ("sa-east".equals(region)) {
125
+ endpoint = "s3-sa-east-1.amazonaws.com";
126
+ } else if ("sa-east-1".equals(region)) {
127
128
} else {
129
throw new ElasticSearchIllegalArgumentException("No automatic endpoint could be derived from region [" + region + "]");
130
}
0 commit comments