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 年前1413 查看次数
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 年前

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

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

回答问题的准则