Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support alternative S3 endpoints #598

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

jdidion
Copy link

@jdidion jdidion commented Sep 1, 2022

This addresses #597. It adds an optional configuration parameter (endpoint) to the download_awscli section. If endpoint is specified, then it is passed as the value of the --endpoint-url option to s3 when performing cp operations.

inputs: Dict[str, Any] = {
"uri": uri,
"docker": cfg["download_awscli"]["docker"],
"endpoint": cfg["download_awscli"].get("endpoint"),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This get() throws unless either we provide a non-None default (second argument), or keep endpoint defined (not commented out) in the default.cfg. The default.cfg could just have endpoint= to define it to an empty string (but then that has to be detected in the tasks WDL)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants