We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f839858 commit f0bd850Copy full SHA for f0bd850
.evergreen/scripts/setup_tests.py
@@ -427,6 +427,11 @@ def handle_test_env() -> None:
427
write_env(name, value)
428
else:
429
run_command(f"bash {auth_aws_dir}/setup-secrets.sh")
430
+ if sub_test_name == "eks":
431
+ # Store AWS creds if they were given.
432
+ for key in ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN"]:
433
+ if key in os.environ:
434
+ write_env(key, os.environ[key])
435
436
if test_name == "atlas_connect":
437
get_secrets("drivers/atlas_connect")
0 commit comments