0

I want to connect from a EC2 in US VPC to a private RDS in a EU VPC. The AWS docs don't seem to mention this scenario - does anyone know if it's possible?

Thanks,

rix
  • 277
  • 4
  • 10
  • I had a similar issue, AWS suggests a VPC Peering connection. https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Scenarios.html – mmagician May 30 '18 at 09:05

2 Answers2

0

AWS does not have an integrated, managed solution to cross-region VPC connectivity.

The "AWS Answers" document Multiple Region Multi-VPC Connectivity explains some of the options currently available.

Michael - sqlbot
  • 22,658
  • 2
  • 63
  • 86
0

You can use HAProxy to expose your SQL RDS to a remove client via the open Internet. You'll want to secure this!

Alternatively you can set up a VPN connection so you can route between the two VPCs.

TheFiddlerWins
  • 2,999
  • 1
  • 15
  • 22