Skip to content

Instantly share code, notes, and snippets.

@kukielp
Created June 9, 2020 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kukielp/2ef1396e33bed4794f71a300f1aad3be to your computer and use it in GitHub Desktop.
Save kukielp/2ef1396e33bed4794f71a300f1aad3be to your computer and use it in GitHub Desktop.
//Create the public S3 bucket
const publicAssets = new s3.Bucket(this, 'example-qr', {
bucketName: 'example.{you-domain}',
publicReadAccess: true,
removalPolicy: cdk.RemovalPolicy.DESTROY,
websiteIndexDocument: 'index.html',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment