Skip to content

Commit

Permalink
Use the --no-sign-request argument to avoid loading AWS credentials (#…
Browse files Browse the repository at this point in the history
…2292)

This PR modifies the current AWS sync command for downloading
open-access projects.

Adding the --no-sign-request argument will avoid loading AWS
credentials, as they are not required to access these datasets.
  • Loading branch information
Benjamin Moody committed Sep 16, 2024
2 parents cda5080 + 780840b commit 93ad99a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ <h5>Access the files</h5>
{% if has_s3_credentials and project.aws.sent_files %}
<li>
Download the files using AWS command line tools:
<pre class="shell-command">aws s3 sync {{ project.aws.s3_uri }} DESTINATION</pre>
<pre class="shell-command">aws s3 sync --no-sign-request {{ project.aws.s3_uri }} DESTINATION</pre>
</li>
{% endif %}

Expand Down

0 comments on commit 93ad99a

Please sign in to comment.