Skip to content

Commit

Permalink
Formatting change for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
chrsmith committed Jul 6, 2018
1 parent a6691e4 commit 4830fcb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions aws-ts-static-website/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ const config = {
};

// contentBucket is the S3 bucket that the website's contents will be stored in.
const contentBucket = new aws.s3.Bucket(
"contentBucket",
const contentBucket = new aws.s3.Bucket("contentBucket",
{
bucket: config.targetDomain,
acl: "public-read",
Expand Down Expand Up @@ -72,8 +71,7 @@ crawlDirectory(
});

// logsBucket is an S3 bucket that will contain the CDN's request logs.
const logsBucket = new aws.s3.Bucket(
"requestLogs",
const logsBucket = new aws.s3.Bucket("requestLogs",
{
bucket: `${config.targetDomain}-logs`,
acl: "private",
Expand Down

0 comments on commit 4830fcb

Please sign in to comment.