# Switch to AWS Cognito

### **JWT to AWS Cognito**

**Set AWS Config**

At present, AWS uses a dummy config, so we don't need to change anything, but in actual implementation, you need to set poolId and appClientId in the following file. For more detail refer to AWS here: <https://aws.amazon.com/cognito/>

{% code title=".env" %}

```javascript
...

## AWS

REACT_APP_AWS_POOL_ID=
REACT_APP_AWS_APP_CLIENT_ID=

...
```

{% endcode %}

**Change AuthProvider**

{% code title="..\src\App.js" %}

```javascript
import { AWSCognitoProvider as AuthProvider } from 'contexts/AWSCognitoContext';
```

{% endcode %}

**Change auth Hooks**

Comment another context in the following file and uncomment Auth0 one.

{% code title="..\src\hooks\useAuth.js" %}

```javascript
import AuthContext from 'contexts/AWSCognitoContext';
```

{% endcode %}

#### Copy login code

It's also super simple. We have provided a code that just needs to be replaced.&#x20;

* **From:** `src\sections\auth\login\AWSCognitoLogin`
* **To:** `src\sections\auth\auth-forms\AuthLogin.js`

{% hint style="info" %}
**For nextJS**, refer next-auth site: <https://next-auth.js.org/providers/cognito>
{% endhint %}

#### Copy register code

We have provided a code that just needs to be replaced.&#x20;

* **From:** `src\sections\auth\register\AWSCognitoRegister`
* **To:** `src\sections\auth\auth-forms\AuthRegister.js`

{% hint style="info" %}
**For nextJS**, refer next-auth site: <https://next-auth.js.org/providers/cognito>
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://codedthemes.gitbook.io/mantis/v2.1.0/authentication/switch-to-aws-cognito.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
