WebStoreBucketName:
Type: String
Default: fcjdmswebstore
Change the Default value to change bucket name
FcjDMSWebStore:
Type: AWS::S3::Bucket
Properties:
BucketName: !Ref WebStoreBucketName
PublicAccessBlockConfiguration:
BlockPublicAcls: "false"
BlockPublicPolicy: "false"
WebsiteConfiguration:
IndexDocument: 'index.html'
FcjDMSWebStorePolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref FcjDMSWebStore
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- "s3:GetObject"
Effect: Allow
Principal: "*"
Resource: !Join
- ""
- - "arn:aws:s3:::"
- !Ref FcjDMSWebStore
- /*
sam build
sam deploy
yarn build
aws s3 cp build s3://BUCKET_NAME --recursive
Replace BUCKET_NAME
with the name of the bucket you just created to host the static website, such as: aws s3 cp build s3://fcjdmswebstore --recursive
You have finished hosting a static website on S3, authentication with Cognito, storage with S3. Next, we will set up the REST API for the application.