Skip to content

Latest commit

 

History

History
58 lines (24 loc) · 1.15 KB

aws-s3-configuration.md

File metadata and controls

58 lines (24 loc) · 1.15 KB
description
Director AWS S3 configuration

AWS S3 Configuration

AWS_ACCESS_KEY_ID=null

AWS Access Key

AWS_SECRET_ACCESS_KEY=null

AWS Secret\

S3_BUCKET="sorry-cypress"

AWS S3 Bucket name

S3_REGION="us-east-1"

AWS S3 Region

S3_ACL="public-read"

AWS S3 ACL for putObject operation

S3_READ_URL_PREFIX=null

Custom prefix for generating "read" URL for generated artifacts. By default, the read ${S3_BUCKET}.s3.amazonaws.com/${objectKey}, if S3_READ_URL_PREFIXis set, then it becomes ${S3_READ_URL_PREFIX}/${objectKey}

S3_IMAGE_KEY_PREFIX=null

Custom prefix for stored images, if set the prefix will be applied e.g.: ${S3_BUCKET}.s3.amazonaws.com/${S3_IMAGE_KEY_PREFIX}${objectKey}

S3_VIDEO_KEY_PREFIX=null

Custom prefix for stored videos, if set the prefix will be applied e.g.: ${S3_BUCKET}.s3.amazonaws.com/${S3_VIDEO_KEY_PREFIX}${objectKey}

UPLOAD_EXPIRY_SECONDS=90

The expiration time for signed upload URLs to be valid. The director service generates the signed URLs that clients use for uploading the artifacts.