Skip to content

Commit

Permalink
fix: support AWS_DEFAULT_REGION env var (#599)
Browse files Browse the repository at this point in the history
AWS_DEFAULT_REGION env var should be checked after AWS_REGION. See b/182491887.
  • Loading branch information
lsirac committed Mar 18, 2021
1 parent bf3507c commit 3d066ee
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 2 deletions.
8 changes: 7 additions & 1 deletion oauth2_http/java/com/google/auth/oauth2/AwsCredentials.java
Expand Up @@ -243,13 +243,19 @@ private String buildSubjectToken(AwsRequestSignature signature)
return URLEncoder.encode(token.toString(), "UTF-8");
}

private String getAwsRegion() throws IOException {
@VisibleForTesting
String getAwsRegion() throws IOException {
// For AWS Lambda, the region is retrieved through the AWS_REGION environment variable.
String region = getEnvironmentProvider().getEnv("AWS_REGION");
if (region != null) {
return region;
}

String defaultRegion = getEnvironmentProvider().getEnv("AWS_DEFAULT_REGION");
if (defaultRegion != null) {
return defaultRegion;
}

if (awsCredentialSource.regionUrl == null || awsCredentialSource.regionUrl.isEmpty()) {
throw new IOException(
"Unable to determine the AWS region. The credential source does not contain the region URL.");
Expand Down
Expand Up @@ -345,6 +345,73 @@ public void getAwsSecurityCredentials_fromMetadataServer_noUrlProvided() {
}
}

@Test
public void getAwsRegion_awsRegionEnvironmentVariable() throws IOException {
TestEnvironmentProvider environmentProvider = new TestEnvironmentProvider();
environmentProvider.setEnv("AWS_REGION", "region");
environmentProvider.setEnv("AWS_DEFAULT_REGION", "defaultRegion");

MockExternalAccountCredentialsTransportFactory transportFactory =
new MockExternalAccountCredentialsTransportFactory();
AwsCredentials awsCredentials =
(AwsCredentials)
AwsCredentials.newBuilder(AWS_CREDENTIAL)
.setHttpTransportFactory(transportFactory)
.setCredentialSource(buildAwsCredentialSource(transportFactory))
.setEnvironmentProvider(environmentProvider)
.build();

String region = awsCredentials.getAwsRegion();

// Should attempt to retrieve the region from AWS_REGION env var first.
// Metadata server would return us-east-1b.
assertEquals("region", region);
}

@Test
public void getAwsRegion_awsDefaultRegionEnvironmentVariable() throws IOException {
TestEnvironmentProvider environmentProvider = new TestEnvironmentProvider();
environmentProvider.setEnv("AWS_DEFAULT_REGION", "defaultRegion");

MockExternalAccountCredentialsTransportFactory transportFactory =
new MockExternalAccountCredentialsTransportFactory();
AwsCredentials awsCredentials =
(AwsCredentials)
AwsCredentials.newBuilder(AWS_CREDENTIAL)
.setHttpTransportFactory(transportFactory)
.setCredentialSource(buildAwsCredentialSource(transportFactory))
.setEnvironmentProvider(environmentProvider)
.build();

String region = awsCredentials.getAwsRegion();

// Should attempt to retrieve the region from DEFAULT_AWS_REGION before calling the metadata
// server. Metadata server would return us-east-1b.
assertEquals("defaultRegion", region);
}

@Test
public void getAwsRegion_metadataServer() throws IOException {
MockExternalAccountCredentialsTransportFactory transportFactory =
new MockExternalAccountCredentialsTransportFactory();
AwsCredentials awsCredentials =
(AwsCredentials)
AwsCredentials.newBuilder(AWS_CREDENTIAL)
.setHttpTransportFactory(transportFactory)
.setCredentialSource(buildAwsCredentialSource(transportFactory))
.build();

String region = awsCredentials.getAwsRegion();

// Should retrieve the region from the Metadata server.
String expectedRegion =
transportFactory
.transport
.getAwsRegion()
.substring(0, transportFactory.transport.getAwsRegion().length() - 1);
assertEquals(expectedRegion, region);
}

@Test
public void createdScoped_clonedCredentialWithAddedScopes() {
AwsCredentials credentials =
Expand Down
Expand Up @@ -74,6 +74,7 @@ public class MockExternalAccountCredentialsTransport extends MockHttpTransport {
private static final String TOKEN_TYPE = "Bearer";
private static final String ACCESS_TOKEN = "accessToken";
private static final String SERVICE_ACCOUNT_ACCESS_TOKEN = "serviceAccountAccessToken";
private static final String AWS_REGION = "us-east-1b";
private static final Long EXPIRES_IN = 3600L;

private static final JsonFactory JSON_FACTORY = new GsonFactory();
Expand Down Expand Up @@ -120,7 +121,7 @@ public LowLevelHttpResponse execute() throws IOException {
if (AWS_REGION_URL.equals(url)) {
return new MockLowLevelHttpResponse()
.setContentType("text/html")
.setContent("us-east-1b");
.setContent(AWS_REGION);
}
if (AWS_CREDENTIALS_URL.equals(url)) {
return new MockLowLevelHttpResponse()
Expand Down Expand Up @@ -245,6 +246,10 @@ public String getAwsRegionUrl() {
return AWS_REGION_URL;
}

public String getAwsRegion() {
return AWS_REGION;
}

public String getStsUrl() {
return STS_URL;
}
Expand Down

0 comments on commit 3d066ee

Please sign in to comment.