I'm going to walk you through the steps for setting up a AWS Lambda to talk to the internet and a VPC. Let's dive in.
So it might tbe really unintuitive but lambda functions have three states.
- No VPC, where it can talk openly to the web, but can't talk to any of your AWS services.
- VPC, the default setting where the lambda function can talk to your AWS services but can't talk to the web.
- VPC with NAT, The best of both worlds, AWS services and web.
I'm gonna walk you through the steps to set up number 3.
VPC Dashboard > Subnets
This is what I had to start with, my existing vpc that I wanted to connect to already had 4 subnets. Here I noticed I had a couple of subnets already set up. Below is a totally fake ip I pulled from the internet. But the patten of increments of 16 is recreated here.
Note: DO NOT use
131.179.0.0/16as your number use your vpc local ip and substitute the pattern.
| VPC | CIDR |
|---|---|
| vpc-████████ (131.179.0.0/16) | 131.179.0.0/20 |
| vpc-████████ (131.179.0.0/16) | 131.179.16.0/20 |
| vpc-████████ (131.179.0.0/16) | 131.179.32.0/20 |
| vpc-████████ (131.179.0.0/16) | 131.179.48.0/20 |
Here I created three four new subnets.
| VPC | CIDR | name |
|---|---|---|
| vpc-████████ (131.179.0.0/16) | 131.179.64.0/20 | lambda-subnet-point-to-nat-1 |
| vpc-████████ (131.179.0.0/16) | 131.179.80.0/20 | lambda-subnet-point-to-nat-2 |
| vpc-████████ (131.179.0.0/16) | 131.179.96.0/20 | lambda-subnet-point-to-nat-3 |
| vpc-████████ (131.179.0.0/16) | 131.179.112.0/20 | lambda-subnet-point-to-igw |
Note: Here
igwstands forInternet Gatewayandnatstands fornetwork address translation gateway (NAT Gateway).
Three of them will point to the nat and one points to the igw.
Let's create the Route Tables now.
VPC Dashboard > Route Tables
Your going to want to set up two Route Tables.
One that points to your nat let's call this lambda-rt-to-nat:
| Destination | Target |
|---|---|
| 131.179.0.0/16 | local |
| 0.0.0.0/0 | nat-█████████████████ |
One that points to your igw let's call this lambda-rt-to-igw:
| Destination | Target |
|---|---|
| 131.179.0.0/16 | local |
| 0.0.0.0/0 | igw-████████ |
Your gonna want to go into each of the subnet and assign them to their corresponding route table.
| subnet name | route table name |
|---|---|
| lambda-subnet-point-to-nat-1 | lambda-rt-to-nat |
| lambda-subnet-point-to-nat-2 | lambda-rt-to-nat |
| lambda-subnet-point-to-nat-3 | lambda-rt-to-nat |
| lambda-subnet-point-to-igw | lambda-rt-to-igw |