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 个月前329 查看次数
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 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则