Skip to content

Commit ed0ba37

Browse files
committed
update to support the expansion of Cognito to Seoul and Frankfurt regions. Some updates to the instructions for clarification
1 parent c137433 commit ed0ba37

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CloudFormation/CreateZombieWorkshop.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"eu-central-1": {
3333
"S3Endpoint": "https://s3-eu-central-1",
3434
"S3ContentsBucket": "aws-zombie-workshop-eu-central-1",
35-
"CognitoRegion": "us-east-1"
35+
"CognitoRegion": "eu-central-1"
3636
},
3737
"ap-northeast-1": {
3838
"S3Endpoint": "https://s3-ap-northeast-1",
@@ -42,7 +42,7 @@
4242
"ap-northeast-2": {
4343
"S3Endpoint": "https://s3-ap-northeast-2",
4444
"S3ContentsBucket": "aws-zombie-workshop-ap-northeast-2",
45-
"CognitoRegion": "us-east-1"
45+
"CognitoRegion": "ap-northeast-2"
4646
},
4747
"ap-southeast-1": {
4848
"S3Endpoint": "https://s3-ap-southeast-1",

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ On the top navigation bar in the management console, switch to **Federated Ident
163163

164164
* When users authenticate into the application, they become an authenticated user, and the application allows them to send chat messages to the survivor chat.
165165

166-
15\. Click the black dropdown arrow in the section titled "Authenticated providers". You will configure your Identity pool to allow federated access from your Identity Provider, your Cognito User Pool. In the "Cognito" identity provider tab, insert your **User Pool ID** and **App Client ID** into their respective text boxes from your text editor file. Do not delete them from the text file, you'll need these items again in a later step.
166+
15\. Click the black dropdown arrow in the section titled "Authentication providers". You will configure your Identity pool to allow federated access from your Identity Provider, your Cognito User Pool. In the "Cognito" identity provider tab, insert your **User Pool ID** and **App Client ID** into their respective text boxes from your text editor file. Do not delete them from the text file, you'll need these items again in a later step.
167167

168168
You should have copied these from your User Pool earlier when you set it up. If you do not have these copied, please navigate back to your Cognito User Pool you created earlier and locate your User Pool Id and App Client ID.
169169

@@ -254,7 +254,7 @@ The application uses [CORS](http://docs.aws.amazon.com/AmazonS3/latest/dev/cors.
254254

255255
* When you launched the CloudFormation template, it also created several Lambda functions for you locally in the region you selected, including functions for retrieving data from and putting data into a DynamoDB "Talkers" table with details about which survivors are currently typing in the chat room.
256256

257-
7\. For the **Lambda Function** field, begin typing "gettalkers" in the text box. In the auto-fill dropdown, select the function that contains "GetTalkersFromDynamoDB" in the name. It should look something like this.... **_[CloudformationTemplateName]_**-GetTalkersFromDynamoDB-**_[XXXXXXXXXX]_**.
257+
7\. For the Lambda Function field, begin typing "gettalkers" in the text box. In the auto-fill dropdown, select the function that contains "GetTalkersFromDynamoDB" in the name. It should look something like this.... **[CloudformationTemplateName]-[XXXXXXX]-GetTalkersFromDynamoDB-[Your Region]**.
258258

259259
* This Lambda function is written in NodeJs. It performs GetItem DynamoDB requests on a Table called Talkers. This talkers table contains records that are continuously updated whenever users type in the chat room. By hooking up this Lambda function to your GET method, it will get invoked by API Gateway when the chat app polls the API with GET requests.
260260

@@ -270,7 +270,7 @@ The application uses [CORS](http://docs.aws.amazon.com/AmazonS3/latest/dev/cors.
270270
11\. Go to the /zombie/talkers/POST method by clicking the "POST" option in the resource tree on the left navigation pane.
271271
![POST Method](/Images/Typing-Step11.png)
272272

273-
12\. Perform Steps 4-10 again as you did for the GET method. However, this time when you are selecting the Lambda Function for the Integration Request, you'll type "writetalkers" in the auto-fill and select the function that looks something like this... **_[CloudformationTemplateName]_**-WriteTalkersToDynamoDB-**_[XXXXXXXXXX]_**
273+
12\. Perform Steps 4-10 again as you did for the GET method. However, this time when you are selecting the Lambda Function for the Integration Request, you'll type "writetalkers" in the auto-fill and select the function that looks something like this... **[CloudformationTemplateName]-[XXXXXXX]-GetTalkersFromDynamoDB-[Your Region]**
274274

275275
* In these steps you are configuring the POST method that is used by the chat app to insert data into DynamoDB Talkers table with details about which users are typing. You're performing the same exact method configuration for the POST method as you did for your GET method. However, since this POST method is used for sending data to the database, it triggers a different backend Lambda function. This function writes data to DynamoDB while the "GetTalkersToDynamoDB" function was used to retrieve data from DynamoDB.
276276

0 commit comments

Comments
 (0)