Skip to content

Commit 18bd158

Browse files
author
Andrea Toska
committed
fix(setup): rename SES environment var
missed this, it needed to be SECRET_KEY, not ACCESS_SECRET.
1 parent d2ebb9f commit 18bd158

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SETUP.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Configurations are loaded through environment variables. `.env` files are suppor
7272
| `PN_ACT_CONFIG_REDIS_URL` | Redis URL | Yes |
7373
| `PN_ACT_CONFIG_EMAIL_SES_REGION` | Amazon SES Region | Yes |
7474
| `PN_ACT_CONFIG_EMAIL_SES_ACCESS_KEY` | Amazon SES Access Key | Yes |
75-
| `PN_ACT_CONFIG_EMAIL_SES_ACCESS_SECRET` | Amazon SES Access Secret | Yes |
75+
| `PN_ACT_CONFIG_EMAIL_SES_SECRET_KEY` | Amazon SES Access Secret | Yes |
7676
| `PN_ACT_CONFIG_EMAIL_FROM` | Email "from" address | Yes |
7777
| `PN_ACT_CONFIG_S3_ENDPOINT` | s3 server endpoint | Yes |
7878
| `PN_ACT_CONFIG_S3_ACCESS_KEY` | s3 secret key | Yes |

example.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PN_ACT_CONFIG_EMAIL_HOST=smtp.gmail.com
88
PN_ACT_CONFIG_EMAIL_PORT=587
99
PN_ACT_CONFIG_EMAIL_SES_REGION=region
1010
PN_ACT_CONFIG_EMAIL_SES_ACCESS_KEY=ACCESS_KEY
11-
PN_ACT_CONFIG_EMAIL_SES_ACCESS_SECRET=ACCESS_SECRET
11+
PN_ACT_CONFIG_EMAIL_SES_SECRET_KEY=ACCESS_SECRET
1212
PN_ACT_CONFIG_EMAIL_FROM=Company Name <[email protected]>
1313
PN_ACT_CONFIG_S3_ENDPOINT=nyc3.digitaloceanspaces.com
1414
PN_ACT_CONFIG_S3_ACCESS_KEY=ACCESS_KEY

0 commit comments

Comments
 (0)