Skip to content

Commit ebdba44

Browse files
committed
Revert "delete outdated STS regional unit test"
I want to investigate this a little more before discarding it completely. This reverts commit b67587d.
1 parent 55e0390 commit ebdba44

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed

modules/repository-s3/qa/web-identity-token/src/test/java/org/elasticsearch/repositories/s3/CustomWebIdentityTokenCredentialsProviderTests.java

+37
Original file line numberDiff line numberDiff line change
@@ -227,4 +227,41 @@ public void testPickUpNewWebIdentityTokenWhenItsChanged() throws Exception {
227227
httpServer.stop(0);
228228
}
229229
}
230+
231+
public void testSupportRegionalizedEndpoints() throws Exception {
232+
Map<String, String> environmentVariables = Map.of(
233+
"AWS_WEB_IDENTITY_TOKEN_FILE",
234+
"/var/run/secrets/eks.amazonaws.com/serviceaccount/token",
235+
"AWS_ROLE_ARN",
236+
ROLE_ARN,
237+
"AWS_STS_REGIONAL_ENDPOINTS",
238+
"regional",
239+
"AWS_REGION",
240+
"us-west-2"
241+
);
242+
Map<String, String> systemProperties = Map.of();
243+
244+
var webIdentityTokenCredentialsProvider = new S3Service.CustomWebIdentityTokenCredentialsProvider(
245+
getEnvironment(),
246+
environmentVariables::get,
247+
systemProperties::getOrDefault,
248+
Clock.systemUTC(),
249+
resourceWatcherService
250+
);
251+
// We can't verify that webIdentityTokenCredentialsProvider's STS client uses the "https://sts.us-west-2.amazonaws.com"
252+
// endpoint in a unit test. The client depends on hardcoded RegionalEndpointsOptionResolver that in turn depends
253+
// on the system environment that we can't change in the test. So we just verify we that we called `withRegion`
254+
// on stsClientBuilder which should internally correctly configure the endpoint when the STS client is built.
255+
// TODO NOMERGE: can't access region anymore, need to rethink this.
256+
// assertEquals("us-west-2", webIdentityTokenCredentialsProvider.getStsRegion());
257+
258+
// TODO NOMERGE do we need this any more?
259+
// See https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html which suggests that the SDKv2 always
260+
// uses regional endpoints. But is AWS_REGION always configured in all the relevant environments or do we need to find a way to be
261+
// more backwards-compatible? And if s3.client.CLIENT_NAME.region is configured do we use that instead of AWS_REGION?
262+
// See also https://docs.aws.amazon.com/eks/latest/userguide/pod-id-how-it-works.html
263+
// See also https://github.com/aws/amazon-eks-pod-identity-webhook/pull/41
264+
265+
webIdentityTokenCredentialsProvider.close();
266+
}
230267
}

modules/repository-s3/src/main/java/org/elasticsearch/repositories/s3/S3Service.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,8 @@ public CompletableFuture<? extends AwsCredentialsIdentity> resolveIdentity() {
480480
*/
481481
static class CustomWebIdentityTokenCredentialsProvider implements AwsCredentialsProvider {
482482

483+
private static final String STS_HOSTNAME = "https://sts.amazonaws.com";
484+
483485
static final String WEB_IDENTITY_TOKEN_FILE_LOCATION = "repository-s3/aws-web-identity-token-file";
484486

485487
private StsWebIdentityTokenFileCredentialsProvider credentialsProvider;
@@ -535,8 +537,6 @@ static class CustomWebIdentityTokenCredentialsProvider implements AwsCredentials
535537
);
536538

537539
{
538-
// TODO NOMERGE: is there any testing we need to add for this? We used to have a unit test that verified the regional stuff,
539-
// but we're using this endpoint override instead of region now.
540540
final var securityTokenServiceClientBuilder = StsClient.builder();
541541
final var endpointOverride = jvmEnvironment.getProperty("org.elasticsearch.repositories.s3.stsEndpointOverride", null);
542542
if (endpointOverride != null) {

0 commit comments

Comments
 (0)