mwirges / aws-tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-tools

Sign S3 URL

SYNOPSIS :
    sign_s3_url.bash
         --help
         --region <REGION>
         --bucket <BUCKET_NAME>
         --file <FILE_PATH>
         --aws-access-key-id <AWS_ACCESS_KEY_ID>
         --aws-secret-access-key <AWS_SECRET_ACCESS_KEY>
         --method <HTTP_REQUEST_METHOD>
         --minute-expire <MINUTE_TO_EXPIRE>

USE CASES :
    If you have a private/public S3 bucket and would like to share the downloadable links to anyone,
    this tool will help to generate signed S3 URLs

DESCRIPTION :
    --help                     Help page
    --region                   Region (optional, defaults to $AWS_DEFAULT_REGION)
                               Valid regions: ap-northeast-1 ap-southeast-1 ap-southeast-2
                                              eu-west-1 sa-east-1
                                              us-east-1 us-west-1 us-west-2
    --bucket                   Bucket name (require)
    --file-path                File path (require)
    --aws-access-key-id        AWS Access Key ID (optional, defaults to $AWS_ACCESS_KEY_ID)
    --aws-secret-access-key    AWS Secret Access Key (optional, defaults to $AWS_SECRET_ACCESS_KEY)
    --method                   HTTP request method (optional, defaults to 'GET' method)
    --minute-expire            Minutes to expire signed URL (optional, defaults to '15' minutes)

EXAMPLES :
    ./sign_s3_url.bash --help
    ./sign_s3_url.bash
        --bucket 'my_bucket_name'
        --file-path 'my_path/my_file.txt'
    ./sign_s3_url.bash
        --region 'us-west-1'
        --bucket 'my_bucket_name'
        --file-path 'my_path/my_file.txt'
        --aws-access-key-id '5KI6IA4AXMA39FV7O4E0'
        --aws-secret-access-key '5N2j9gJlw9azyLEVpbIOn/tZ2u3sVjjHM03qJfIA'
        --method 'PUT'
        --minute-expire 30

About

License:MIT License


Languages

Language:Shell 100.0%