Skip to content

Commit

Permalink
Fix env variables (#97)
Browse files Browse the repository at this point in the history
* Fix: Change .env variables for AWS SES config

* Oops forgot one

* Refactor: Change SES_ prefix with AWS_
  • Loading branch information
memsbdm authored May 4, 2024
1 parent fd93487 commit 2455620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { stubsRoot } from './stubs/main.js'
*/
const ENV_VARIABLES = {
smtp: ['SMTP_HOST', 'SMTP_PORT'],
ses: ['SES_ACCESS_KEY', 'SES_ACCESS_SECRET', 'SES_REGION'],
ses: ['AWS_ACCESS_KEY_ID', 'AWS_SECRET_ACCESS_KEY', 'AWS_REGION'],
mailgun: ['MAILGUN_API_KEY', 'MAILGUN_DOMAIN'],
sparkpost: ['SPARKPOST_API_KEY'],
resend: ['RESEND_API_KEY'],
Expand Down

0 comments on commit 2455620

Please sign in to comment.