Skip to content

Commit

Permalink
Update src/gei/Factories/AwsApiFactory.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Smith <[email protected]>
  • Loading branch information
timrogers and dylan-smith authored Jul 5, 2023
1 parent aaec575 commit 9e0ac2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gei/Factories/AwsApiFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public AwsApiFactory(EnvironmentVariableProvider environmentVariableProvider)

public virtual AwsApi Create(string awsRegion = null, string awsAccessKeyId = null, string awsSecretAccessKey = null, string awsSessionToken = null)
{
awsAccessKeyId ??= _environmentVariableProvider.AwsAccessKeyId(false);
awsSecretAccessKey ??= _environmentVariableProvider.AwsSecretAccessKey(false);
awsAccessKeyId ??= _environmentVariableProvider.AwsAccessKeyId();
awsSecretAccessKey ??= _environmentVariableProvider.AwsSecretAccessKey();
awsSessionToken ??= _environmentVariableProvider.AwsSessionToken(false);
awsRegion ??= _environmentVariableProvider.AwsRegion(false);

Expand Down

0 comments on commit 9e0ac2e

Please sign in to comment.