Skip to content

Commit 7988449

Browse files
Fix typo: resoruces -> resources (#1535)
1 parent 0d97ffb commit 7988449

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

www/docs/auth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Here's how the flow works:
6464

6565
You can read more about [Granting access to S3 with presigned URLs](./storage#granting-access-with-presigned-url)
6666

67-
### Accessing other resoruces
67+
### Accessing other resources
6868

6969
Normally, you shouldn't need to allow users to directly access other AWS services from the frontend. This includes:
7070

@@ -122,7 +122,7 @@ If you are using a third-party auth provider, you don't need to use the [Auth](c
122122

123123
:::
124124

125-
However if you wanted your users to be able to access other AWS resources while using a third party auth provider; you'll need to use a [Cognito Identity Pool](https://en.wikipedia.org/wiki/JSON_Web_Token) via the [`Auth`](constructs/Auth.md) construct. It'll assign temporary IAM credentials to your users. Read more about [how to access other resources](#accessing-other-resoruces-1) below.
125+
However if you wanted your users to be able to access other AWS resources while using a third party auth provider; you'll need to use a [Cognito Identity Pool](https://en.wikipedia.org/wiki/JSON_Web_Token) via the [`Auth`](constructs/Auth.md) construct. It'll assign temporary IAM credentials to your users. Read more about [how to access other resources](#accessing-other-resources-1) below.
126126

127127
### Accessing APIs
128128

@@ -157,7 +157,7 @@ You'll need to use presigned URLs to upload files to your S3 bucket. This is sim
157157

158158
### Accessing other resources
159159

160-
As mentioned above; if you want your users to be able to access other AWS resources, you can use the [`Auth`](constructs/Auth.md) construct to create a [Cognito Identity Pool](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html). And use it to assign temporarily IAM credentials for your users to access other AWS services. The setup is similar to the [Cognito User Pool setup](#accessing-other-resoruces) above.
160+
As mentioned above; if you want your users to be able to access other AWS resources, you can use the [`Auth`](constructs/Auth.md) construct to create a [Cognito Identity Pool](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-identity.html). And use it to assign temporarily IAM credentials for your users to access other AWS services. The setup is similar to the [Cognito User Pool setup](#accessing-other-resources) above.
161161

162162
```js
163163
const auth = new Auth(this, "Auth", {

0 commit comments

Comments
 (0)