Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
AWS Lamda, IAM role and AWS ECR
20 students

AWS Lamda, IAM role and AWS ECR

AWS services
Created byOmkar Kuchekar
Last updated 6/2023
English
English [Auto],

What you'll learn

  • Students will get hands on for AWS Lambda & IAM role
  • Basics of Docker, nodejs, AWS ECR, AWS Ec2
  • Practical approach by sharing code, live coding
  • Git repository sharing

Course content

2 sections6 lectures54m total length
  • Create AWS lambda function7:38

    Create an AWS lambda function from scratch using Python, configure execution role, use an existing role or create one, and test and deploy code with the built-in editor.

  • IAM role creation and setup7:38

    Learn how to create an AWS Lambda function from scratch, select Python, and configure an execution role to grant access to other services like S3; test, deploy, and iterate.

Requirements

  • Basic knowledge of cloud technology is enough
  • The one who is ready to go deep in CLOUD

Description

AWS Lambda is a server less computing service provided by Amazon Web Services (AWS). It allows you to run your code without provisioning or managing servers. With Lambda, you can focus on writing the code for your application while AWS handles the underlying infrastructure and scaling.

Here are some key features and concepts related to AWS Lambda:

  1. Function Execution: Lambda allows you to upload your code as a function, written in languages such as Node.js, Python, Java, C#, or Go. The code is divided into small, self-contained units called functions, which can be triggered by events or invoked directly.

  2. Event-driven Architecture: Lambda functions are typically triggered by events such as changes in an Amazon S3 bucket, updates to a DynamoDB table, or incoming messages from Amazon SNS or AWS IoT. When an event occurs, Lambda automatically executes the associated function.

Lambda has become popular for a variety of use cases, such as web applications, data processing pipelines, real-time file processing, IoT backends, and more. Its server less nature and event-driven model make it flexible and scalable for different types of workloads.

---------------------------------------------------------------------------------------------------------------------------------

Section 2

Title-How to Deploy a Node.js (Express) Server Docker Container to AWS via Elastic Container Registry

To deploy a Node.js (Express) server Docker container to AWS via Elastic Container Registry (ECR), you can follow these steps:

Who this course is for:

  • Beginner AWS cloud