Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 67a60af

Browse files
authored
Merge pull request #92 from heitorlessa/WebApp-Fixes
Quick fixes to WebApp based on last workshop's attendees feedback
2 parents 3afc0bc + 8bc4703 commit 67a60af

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

WebApplication/1_StaticWebHosting/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ See [this example](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket
168168

169169
1. Choose the **Permissions** tab, then choose **Bucket Policy**.
170170

171-
1. Enter the following policy document into the bucket policy editor replacing `[YOUR_BUCKET_NAME]` with the name of the bucket you created in section 1:
171+
1. Enter the following policy document into the bucket policy editor replacing `YOUR_BUCKET_NAME` with the name of the bucket you created in section 1:
172172

173173
```json
174174
{
@@ -178,7 +178,7 @@ See [this example](http://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket
178178
"Effect": "Allow",
179179
"Principal": "*",
180180
"Action": "s3:GetObject",
181-
"Resource": "arn:aws:s3:::[YOUR_BUCKET_NAME]/*"
181+
"Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
182182
}
183183
]
184184
}

WebApplication/2_UserManagement/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,8 @@ The [/js/config.js](../1_StaticWebHosting/website/js/config.js) file contains se
197197
![Successful login screenshot](../images/successful-login.png)
198198

199199
After you have successfully logged into your web application, you can proceed to the next module, [Serverless Backend](../3_ServerlessBackend).
200+
201+
### Extra
202+
203+
* Try copying the **auth_token** you've received and paste that into an [online JWT Decoder](https://jwt.io/) to understand what this token means for your application
204+

0 commit comments

Comments
 (0)