Skip to content

Commit

Permalink
[infra] fix: disable static website
Browse files Browse the repository at this point in the history
  • Loading branch information
Coldot committed Nov 25, 2024
1 parent 38c6244 commit c440e55
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions infrastructure/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,7 @@ new aws.lambda.Permission("apiGatewayPermission", {
sourceArn: pulumi.interpolate`${api.executionArn}/*/*`
});

const websiteBucket = new aws.s3.Bucket("clickgame-frontend-bucket", {
website: {
indexDocument: "index.html",
},
});
const websiteBucket = new aws.s3.Bucket("clickgame-frontend-bucket");

const originAccessIdentity = new aws.cloudfront.OriginAccessIdentity("originAccessIdentity", {
comment: "OAI for website bucket",
Expand Down

0 comments on commit c440e55

Please # to comment.