Default to eu-west-1

This commit is contained in:
Mel O'Hagan 2022-06-15 16:29:11 +01:00
parent b0a3abc308
commit b118833fda
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ exports.getSignedUploadURL = async function (ctx) {
// Determine type of datasource and generate signed URL
let signedUrl
let publicUrl
const awsRegion = datasource?.config?.region
const awsRegion = datasource?.config?.region || "eu-west-1"
if (datasource.source === "S3") {
const { bucket, key } = ctx.request.body || {}
if (!bucket || !key) {