-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
add variable to configure SNS sender #11930
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
S3 Image Test Results (AMD64 / ARM64) 2 files 2 suites 4m 9s ⏱️ Results for commit 9a68e04. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 💯 Nice and clean, would be great to have a test though, but that could also be added in a later iteration (not blocking). 😉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Thanks for addressing the comment right away and adding a test! 🚀 💯
Motivation
As reported by @HarshCasper, the sender of SNS email notifications was hardcoded to
admin@localstack.com
with no mean of changing that. We should replace this value by something likeno-reply@sns.localstack.cloud
or something similar, as AWS is sending those notifications withno-reply@sns.amazonaws.com
.I'm a bit worried about changing this directly however, as some users might expected and test that emails are arriving from that sender.
Changes
SNS_SES_SENDER_ADDRESS
config variable to make it configurable, and fallback toadmin@localstack.com
if not configuredTODO
What's left to do: