Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

chore: Populate uploads S3 cfg to pull from env variables. #78

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/basic/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ modules:
maxUploadSize: { gb: 10 }
maxFilesPerUpload: 16
s3:
# I'm not commiting API secrets again, I've learned
bucket: { env: S3_BUCKET_NAME }
region: { env: S3_BUCKET_REGION }
endpoint: { env: S3_BUCKET_ENDPOINT }
accessKeyId: { env: AWS_ACCESS_KEY_ID }
secretAccessKey: { env: AWS_SECRET_ACCESS_KEY }
auth:
registry: local
config:
Expand Down
Loading