@sjmeverett/s3-bucket-with-contents-resource
v3.0.0
Published
A lambda for a CloudFormation custom resource which creates an S3 bucket for website hosting and unzips files onto it.
Downloads
23
Readme
@sjmeverett/s3-bucket-with-contents-resource
A lambda for a CloudFormation custom resource which creates an S3 bucket for website hosting and unzips files onto it.
Example:
const myWebsite = createS3BucketWithContents({
SourceBucket: 'deployment-bucket',
SourceKey: 'my-website.zip',
IndexDocument: 'index.html',
ErrorDocument: 'error.html',
});