[ses] Add VPC Endpoint for SES
See original GitHub issueI need to setup a VPC Interface Endpoint for SES as described at https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-set-up-vpc-endpoints.html via the CDK.
Use Case
We configure and deploy our entire infrastructure as code via the javascript CDK. While I can grant our VPC access to services such as Secrets Manager using addInterfaceEndpoint()
and InterfaceVpcEndpointAwsService.SECRETS_MANAGER
, I can’t see a way to connect SES.
Indeed, while the VPC user guide lists SES as an available interface endpoint, the same option is missing in the latest CDK.
Proposed Solution
Add the ability to setup a VPC endpoint for SES.
This is a 🚀 Feature Request
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Setting up VPC endpoints with Amazon SES
The process of setting up a VPC endpoint to use with Amazon SES consists of a few separate steps. First, you have to...
Read more >how to use vpc endpoint with ses in serverless - Stack Overflow
I am using SAM, and this was all I needed to add the VPC endpoint to my build. Then, as @Amir Babic says,...
Read more >What am I missing with VPC Endpoints for SES? : r/aws - Reddit
App Account has all private VPCs. We have a VPC Endpoint setup for SES and SNS. SNS is working perfect after a bunch...
Read more >SES via Lambda in VPC | AWS re:Post
All you need to do is create a VPC endpoint to SES and make sure that the routing table in configured correctly, Please...
Read more >VMware Cloud on AWS – Access an Amazon Simple Email ...
Amazon SES for VPC endpoints is generally available and you can use it in all regions where Amazon SES is available. There is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Any news on this topic, CDK-wise?
Perhaps the problem is that the
aws-sdk
uses the service endpointemail.eu-west-1.amazonaws.com
rather than the SMTP endpointemail-smtp.eu-west-1.amazonaws.com
? If I alter my function send the email via SMTPS directly, the configuration appears to work.