diff --git a/bootstrap_cfn/config.py b/bootstrap_cfn/config.py index 86cacce..afc0f01 100644 --- a/bootstrap_cfn/config.py +++ b/bootstrap_cfn/config.py @@ -1141,7 +1141,7 @@ def _get_manual_ssl_certificate(self, certificate_name): @classmethod def _find_resources(cls, template, resource_type): - f = lambda x: x.resource_type == resource_type + def f(x): return (x.resource_type == resource_type) return filter(f, template.resources.values()) @classmethod diff --git a/docs/ses_acm_validation.md b/docs/ses_acm_validation.md index fc68ce1..7f6473b 100644 --- a/docs/ses_acm_validation.md +++ b/docs/ses_acm_validation.md @@ -61,6 +61,8 @@ with default 3 day deletion policy. We need to setup SES on the domain we want t receive mail on since it doesnt have cloudformation support, but luckily this is straightforward. +> Note, SES may bounce emails when sending to meta-email addresses such as for groups. See `the SES FAQ `_ for more details. + Setup SES on the mail domain ~~~~~~~~~~~~~~~~~~~~~~~~~~~~