sparse-intern-71089
06/22/2020, 3:08 PMfuture-barista-68134
06/22/2020, 3:16 PM// contentBucket is the S3 bucket that the website's contents will be stored in.
const contentBucket = new aws.s3.Bucket("contentBucket",
{
bucket: targetDomain,
acl: "public-read",
// Configure S3 to serve bucket contents as a website. This way S3 will automatically convert
// requests for "foo/" to "foo/index.html".
website: {
indexDocument: "index.html"
},
});
future-barista-68134
06/22/2020, 3:16 PMindex.html
object to properly test out the functionality there 🙂dazzling-sundown-39670
06/22/2020, 4:36 PM