I premise I'm not a systemist nor network engineer. I'm trying to invoke a lambda function from another lambda function in the same vpc. My network configuration is:
- 1 vpc
- 1 public subnet and 1 private subnet
- 2 route tables
- 1 internet gateway
- 1 security group
My lambda:
- is attached to both subnets and to sec group;
- connects to db and retrieves data;
- invokes lambda function to send push notification.
But when the first one tries to invoke the second aws returns timeout exception. My idea is that the first one "can't see" the second.
How can I solve the problem?
Thanks