[WORKFLOWS-70] Create public buckets for iGenomes reference files #74
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I was hoping to re-use the
s3-bucket-v2.j2
template from aws-infra, but I didn't want to have to deal with the S3objects macro, especially because it's not relevant to our use case. I opted for adapting the template for our purposes.I'm still figuring out how to copy the files. Unfortunately, interacting with the nf-core bucket requires using
--no-sign-request
, which then prevents the requests to our bucket to work since they're unauthenticated (see example command below). I'm currently staging files locally on a Service Catalog instance. I included a script that I will run once the bucket is deployed to production.aws s3 --no-sign-request sync "s3://source-bucket/" "s3://target-bucket/"