c03l19 lambda within a vpc edited…interesting use case with an apn partner who configured an aws...

4
Lambda within a VPC Brock Tubre TECHNICAL INSTRUCTOR

Upload: others

Post on 11-Oct-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: C03L19 Lambda Within A VPC edited…interesting use case with an APN Partner who configured an AWS Lambda function to access resources running in a custom virtual private cloud (VPC)

Lambda within a VPCBrock TubreTECHNICAL INSTRUCTOR

Page 2: C03L19 Lambda Within A VPC edited…interesting use case with an APN Partner who configured an AWS Lambda function to access resources running in a custom virtual private cloud (VPC)

Why Use AWS Lambda in a Custom VPC?LAMBDA WITHIN A VPC

Page 3: C03L19 Lambda Within A VPC edited…interesting use case with an APN Partner who configured an AWS Lambda function to access resources running in a custom virtual private cloud (VPC)

Lambda within a VPC RequirementsLAMBDA WITHIN A VPC

Shared ENIs Are CreatedThe AWS Hyperplane creates a shared ENI (per AZ) when the Lambda function is first created.

You should use multiple subnets that span AZ for high availability.

Security GroupsOnce inside a VPC, security groups are used to control network access to each Lambda function.

There is a limit for inbound access built into the Lambda service for security reasons.

NAT for Internet AccessLambda functions cannot be assigned public IP addresses. NAT translation is required for internet access.

Page 4: C03L19 Lambda Within A VPC edited…interesting use case with an APN Partner who configured an AWS Lambda function to access resources running in a custom virtual private cloud (VPC)

Choosing a VPCLAMBDA WITHIN A VPC