AWS updates (#447)

* AWS updates

* CloudFormation stack parameter for changing CloudFront tile cache TTL.
* S3 requests are always set as Requester Pays, enabling fetching from buckets in other accounts.
This commit is contained in:
Brandon Liu
2024-09-10 22:45:40 -07:00
committed by GitHub
parent df23fa6320
commit 089d13d637
2 changed files with 11 additions and 3 deletions

View File

@@ -77,6 +77,8 @@ class S3Source implements Source {
Range: "bytes=" + offset + "-" + (offset + length - 1),
// biome-ignore lint: aws api
IfMatch: etag,
// biome-ignore lint: aws api
RequestPayer: "requester",
})
);
} catch (e: unknown) {