Amazon S3 - Upload Files from Shipyard
Overviewβ
Easily import one or more files directly into an Amazon S3 bucket, no matter how big they are.
Note: This Vessel cannot be used to upload a local file from your computer.
Recommended Setup:
- A Vessel built with this Blueprint should typically run after a Vessel that either downloads a file to Shipyard or generates a file with code.
Variablesβ
Name | Reference | Type | Required | Default | Options | Description |
---|---|---|---|---|---|---|
Bucket Name | S3_BUCKET_NAME | Alphanumeric | β | - | - | Name of the S3 bucket to upload the file(s) to. |
Shipyard Folder Name | S3_SOURCE_FOLDER_NAME | Alphanumeric | β | - | - | Name of the local folder on Shipyard to upload the target file from. If left blank, will look in the home directory. |
Shipyard File Name Match Type | S3_SOURCE_FILE_NAME_MATCH_TYPE | Select | β | exact_match | Exact Match: exact_match Regex Match: regex_match | Determines if the text in "Shipyard File Name" will look for one file with exact match, or multiple files using regex. |
Shipyard File Name | S3_SOURCE_FILE_NAME | Alphanumeric | β | - | - | Name of the target file on Shipyard. Can be regex if "Match Type" is set accordingly |
S3 Folder Name | S3_DESTINATION_FOLDER_NAME | Alphanumeric | β | - | - | Folder in the S3 bucket to upload the file(s) to. If left blank, will upload to the root directory. |
S3 File Name | S3_DESTINATION_FILE_NAME | Alphanumeric | β | - | - | What to name the file(s) being uploaded. If left blank, defaults to the original file name(s). |
Access Key ID | AWS_ACCESS_KEY_ID | Password | β | - | - | The access key ID for programmatic IAM user used to download the file. See Authorization documentation for more information. |
Secret Access Key | AWS_SECRET_ACCESS_KEY | Password | β | - | - | The secret access key for programmatic IAM user used to download the file. See Authorization documentation for more information. |
Region | AWS_DEFAULT_REGION | Select | β | us-east-2 | us-east-2 ,us-east-1 ,us-west-1 ,us-west-2 ,af-south-1 ,ap-east-1 ,ap-south-1 ,ap-northeast-3 ,ap-northeast-2 ,ap-southeast-1 ,ap-southeast-2 ,ap-northeast-1 ,ca-central-1 ,cn-north-1 ,cn-northwest-1 ,eu-central-1 ,eu-west-1 ,eu-west-2 ,eu-south-1 ,eu-west-3 ,eu-north-1 ,sa-east-1 ,me-south-1 , | The AWS region for the S3 bucket and IAM user. |
Extra Variables | S3_EXTRA_ARGS | Alphanumeric | β | {} | - | Extra arguments that may be passed to the S3 operation. |
YAMLβ
Below is the YAML template for this Blueprint and can be used in the Fleet YAML Editor.
source:
blueprint: Amazon S3 - Upload Files from Shipyard
inputs:
S3_BUCKET_NAME: null ## REQUIRED
S3_SOURCE_FOLDER_NAME: null
S3_SOURCE_FILE_NAME_MATCH_TYPE: exact_match ## REQUIRED
S3_SOURCE_FILE_NAME: null ## REQUIRED
S3_DESTINATION_FOLDER_NAME: null
S3_DESTINATION_FILE_NAME: null
AWS_ACCESS_KEY_ID: null ## REQUIRED
AWS_SECRET_ACCESS_KEY: null ## REQUIRED
AWS_DEFAULT_REGION: us-east-2 ## REQUIRED
S3_EXTRA_ARGS: '{}'
type: BLUEPRINT
guardrails:
retry_count: 1
retry_wait: 0h0m0s
runtime_cutoff: 1h0m0s
exclude_exit_code_ranges:
- '101'
- '102'
- '103'
- '104'
- '105'
- '106'
- '107'
- '108'
- '202'
- '205'
- '210'
- '249'