Home > database >  is it possible to create a AWS API Gateway REST API integration with a internal load balancer?
is it possible to create a AWS API Gateway REST API integration with a internal load balancer?

Time:02-05

I have an ECS cluster with all private IPs and an internal application load balancer. I can access my application load balancer via VPN, but I want to add an API Gateway REST API and serve these APIs publicly. However, there is no option for an application load balancer in the REST API VPC Link section. I am wondering if this is possible?

CodePudding user response:

Amazon API Gateway REST API only supports Network Load Balancer (NLB) for private integrations via VPCLink.

One option in this situation is to create an NLB with the existing ALB as a target group (note that this will incur additional cost). Connect the API Gateway REST API to the NLB via VPCLink.

The following references might be useful:

  • Related