AWS Lambda invocation of internal ALB getting timed out

0

I have to call ALB using its DNS from a Lambda function. Both of them are under the same VPC and have the same set of private subnets associated with them. All the private subnets have a Route table with the route to nat-gateway configured. The target of the ALB is service running in the EC2 instances. The call from the Lambda function to ALB is getting timed out. What could be the reason for the same ?

質問済み 2年前1415ビュー
2回答
1

Hello,

For the ALB, was it set up as Internal or Public Facing? If it's public facing, you will need to add a NAT Gateway to the VPC to allow the Lambda to access it even though both are in the same VPC.

If the ALB is set up as Internal, ensure that the Lambda is able to access the ALB's security group. The security group assigned to the ALB may not allow the Lambda access and it will need to be added to the SG.

profile pictureAWS
エキスパート
Chris_G
回答済み 2年前
  • In my scenario, the ALB is set up as internal. I had added Lambda's SG as the source to the ALB's SG but still was getting time out while trying to reach ALB from Lambda.

0

I did a mistake on my end, under terraform for LB the internal was set as false. Which made it internet-facing instead of internal and under private subnets.

回答済み 2年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ