You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The command should check that all the minimum requirements are met.
Describe the solution you'd like
For example, it should check for the following things:
The Identities are created;
The identities are allowed to send emails (ensure they are verified: if they aren't, it is not possible to send emails - find a reference in the SES documentation about this);
The identities are subscribed to a topic for notifications (if configured in config/packages/shq_aws_ses_monitor.yaml to notify - don't check the development identity);
The endpoint for notifications can be reached from the Internet;
Check the app can connect to AWS (credentials and other configs are correct);
On prod, check the emails are sent through SES (check SwiftMailer configuration);
The command should not be run on dev (is this really useful to implement or not?);
Try to send a custom test email to ensure all works well (this should be configurable to not send an email on each deployment);
SwiftMailer: which checks on SwiftMailer?
Additional context
The command is intended to be used during continuous delivery to check the application is correctly working.
This command is a bit different than the aws:ses:debug command as this one is intended to have a general picture of the configuration, highlighting some other information like, for example, if the notifications include the headers, or other info like those.
This aws:ses:check command, instead, has to check that all the minimum requirements needed to send emails are met.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The command should check that all the minimum requirements are met.
Describe the solution you'd like
For example, it should check for the following things:
config/packages/shq_aws_ses_monitor.yaml
to notify - don't check the development identity);dev
andprod
in the name of topics #71);prod
, check the emails are sent through SES (check SwiftMailer configuration);dev
(is this really useful to implement or not?);Additional context
The command is intended to be used during continuous delivery to check the application is correctly working.
This command is a bit different than the
aws:ses:debug
command as this one is intended to have a general picture of the configuration, highlighting some other information like, for example, if the notifications include the headers, or other info like those.This
aws:ses:check
command, instead, has to check that all the minimum requirements needed to send emails are met.The text was updated successfully, but these errors were encountered: