Connecting a Lambda in a VPC to an api gateway

0

Hello team, I currently have a lambda function in a vpc (it needs to talk to a vpc specific resource) that I will like to connect to an api gateway. I know that if the subnet the lambda resides in is connected to a nat gateway it will be able to communicate with the api gateway. However, I am looking for cheaper alternatives to a nat gateway? Please what other cheaper options can be explored (with links to documentations)?

Olive
已提問 2 個月前檢視次數 325 次
3 個答案
2
已接受的答案

Hi.

For a lambda in a customer vpc, to connect to an API gateway, you do not need a NAT Gateway.

API gateway is a regional service, and it allows to communicate with lambdas in customer vpc without any problem, as API GW uses the public lambda API.

A Nat gateway is to be used if your lambda, in a private subnet, wants to communicate with some on the internet, like a rest API.

If your lambda must be in private vpc, and you need outbound/egress communication with the internet, then you have to use Nat gateway.

If your lambda needs to talk to some internal aws services, then vpc endpoints via private link is the way to go: https://docs.aws.amazon.com/vpc/latest/privatelink/concepts.html

profile picture
專家
已回答 2 個月前
profile picture
專家
已審閱 2 個月前
1

API-GW can connect to Lambda function inside A VPC.

But for lambda inside a private subnet inside a VPC , to access external resources you can use a NAT instanceinternet access to lambda in vpc instead of a NAT gateway if you are worried about NAT Gateway cost but do review the different between them here

You can also create a NAT Instance from a NAT AMI see this link

Also review this link on the functions execution role permissions and other aspects

HTH

AWS
jay-aws
已回答 2 個月前
0

Thank you for the answers, I will connect the lambda in the vpc without to a nat gateway to the api gateway. Hopefully that works out in this use case, if not, I will explore the nat instance. Thank you

Olive
已回答 2 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南