Reputation: 3264
We have two AWS Accounts with bunch of private API Gateways (backed by lambda, cognito etc). We would like to access these api gateway via public one (via proxy feature of api gateway). I have done integration with public ones without any issue. But now we would like to these setup.
What would be the best approach here ?
We would like to keep cost minimum. I have shown only important components here for simplicity.
Upvotes: 3
Views: 1905
Reputation: 468
There is a good article in Medium (https://medium.com/@nate_mitchell/api-gateway-as-an-inter-vpc-private-api-proxy-3c29b67e91ee) describing the process. It describes using VPC endpoints to route the traffic internally. I think what you are missing in your diagram is a network load balancer to balance between the API Gateways.
Upvotes: 1