dreamland/scripts/s3.ts
2022-09-14 23:27:49 +02:00

8 lines
276 B
TypeScript

import { S3, S3Bucket } from "https://deno.land/x/s3@0.5.0/mod.ts";
const s3 = new S3({
accessKeyID: Deno.env.get("AWS_ACCESS_KEY_ID")!,
secretKey: Deno.env.get("AWS_SECRET_ACCESS_KEY")!,
region: "us-east-1",
endpointURL: Deno.env.get("S3_ENDPOINT_URL"),
});