Skip to content

Commit

Permalink
Add details about hardcoded rti-cromwell-output bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
jaamarks committed Jul 12, 2024
1 parent cae5f04 commit fd1ec7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion archive_and_delete_from_s3/v1.1.0/glacierize.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@

@app.command()
def main(
bucket_name: str = typer.Option(..., "--bucket-name", "-b", help="The name of the S3 bucket that contains the objects."),
bucket_name: str = typer.Option(..., "--bucket-name", "-b", help="The name of the S3 bucket containing the objects. **Currently hardcoded as `rti-cromwell-output` for safety reasons.** This feature is under development and cannot be used with other buckets at this time.")
prefix: str = typer.Option(..., "--prefix", "-p", help="The name of the S3 folder (excluding the bucket name) to archive and delete recursively."),

aws_access_key: str = typer.Option(..., "--aws-access-key", "-a", help="AWS access key ID"),
aws_secret_access_key: str = typer.Option(..., "--aws-secret-access-key", "-s", help="AWS secret access key"),
days_to_archive: int = typer.Option(180, "--days-to-archive", help="The number of days before moving the object to Intelligent-Tiering storage (default: 180)."),
Expand Down

0 comments on commit fd1ec7d

Please sign in to comment.