39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
---
|
|
title: Create AWS credentials
|
|
description: Step by step guide to create AWS credentials to self-host useSend.
|
|
---
|
|
|
|
<Steps>
|
|
<Step title="Create a new user">
|
|
Login to your AWS console and go to IAM > Users > Create user. Type in user name, in this case `unsend`
|
|
|
|

|
|
|
|
</Step>
|
|
<Step title="Set permission and create">
|
|
Search for `AmazonSNSFullAccess` and `AmazonSESFullAccess` and check the checkboxes. Then proceed to create the user.
|
|
|
|

|
|
|
|
</Step>
|
|
<Step title="Create access key">
|
|
Click on the created user and click on the `Create access key` button.
|
|
|
|

|
|

|
|

|
|
|
|
</Step>
|
|
<Step title="Retrieve access key">
|
|
Copy the access key ID and secret access key to your `.env` file.
|
|
|
|
```env
|
|
AWS_ACCESS_KEY=<access-key-id>
|
|
AWS_SECRET_KEY=<secret-access-key>
|
|
```
|
|
|
|

|
|
|
|
</Step>
|
|
</Steps>
|