AWS, Cloud Computing

4 Mins Read

Managing Running Instances Made Easier with AWS Lambda

Voiced by Amazon Polly

Introduction

EC2 instances are the major AWS resources, in which applications’ data can be stored, run, and deployed. What if we want to send our running AWS Instances (servers) information to our team in form of logs for any purposes? Also, if you want to track unwanted launched instances in your account. We can do it through a single click by creating a function in AWS lambda. In this post, I will cover how to call instances of meta-data using Lambda.

AWS Lambda: AWS Lambda is a serverless computing technology that allows you to run code without provisioning or managing servers Lambda executes code only when needed and scales automatically. Without any additional configuration, AWS Lambda scales the infrastructure without difficulty. The amount of operational work is decreased. It provides fault tolerance for both the code- and function-running services. You need not be concerned about the application being unavailable.

Primary use cases for Lambda:

  • Data processing
  • Real-time file processing
  • Real-time stream processing

AWS EC2: Elastic Compute Cloud (EC2) Amazon Elastic Compute Cloud provides virtual machines instantly. It is a Platform as a Service-oriented resource. EC2 is a customizable cloud server. On Amazon’s EC2, an instance is a virtual server used to run applications. It can also be viewed as a tiny component of a bigger computer, a tiny component with its own Hard drive, network connection, operating system, etc. But everything is actually virtual. On a single physical system, you can have several “small” computers, and all of these little computers are referred to as Instances.

Primary use cases for EC2:

  • Hosting applications
  • Storing a Backup data
  • Development and test environments

Customized Cloud Solutions to Drive your Business Success

  • Cloud Migration
  • Devops
  • AIML & IoT
Know More

Permissions Required to Perform the Task

The Lambda function needs IAM permission to access the EC2 instances.

 Creating an IAM Role with required policies.

  1. For creating an IAM role go to the IAM dashboard in AWS Console. There you can see the roles tab, click on the “Create role” option. Select the use case as Lambda.

IAM1

2. Click on Add policy and select “Ec2ReadOnlyAccess”  for instances metadata. Select another policy called “LambdaBasicExecutionRole” for executing the lambda function.

IAM2

  1. Click on create to get your required role in the console.

IAM3

Steps to Create a Lambda Function

  1. Go to the lambda Function Dashboard in AWS Console, there Click on Create Function.
  1. Select the “Author from Scratch” option, give a name to the function, and select a programming language for writing the lambda function.

lambda1

  1. Select the IAM permission that we created previously, then click create.

lambda2

4. After creating Lambda Function, we can write our function code and create a test event to run the function.

lambda3.jpg

  1. Import boto3 and pprint library and assign boto3 client to EC2.

lambda4

Code:

6. Let us check the instances that exist in our EC2 console.

lambda5

  1. Run the test event, and we will get the details of resources available in the account. verify the details with existing resources.

lambda6

When we run the test event, lambda code will be executed and fetched the meta-data as a response.

Pricing

Pricing of AWS Lambda is calculated as pay per calls:

  • First one million requests are free.
  • $0.20 per 1 million requests thereafter ($0.0000002 per request)

It is usually cheap to run AWS Lambda. So, you can use it liberally.

Conclusion

AWS lambda can execute functions and fetch details fast. That is because of the hidden server configuration used by AWS to run lambda. Managing regular cloud instances is made easier with lambda. We can also store the output of lambda as a log into an S3 bucket.

Get your new hires billable within 1-60 days. Experience our Capability Development Framework today.

  • Cloud Training
  • Customized Training
  • Experiential Learning
Read More

About CloudThat

CloudThat is a leading provider of Cloud Training and Consulting services with a global presence in India, the USA, Asia, Europe, and Africa. Specializing in AWS, Microsoft Azure, GCP, VMware, Databricks, and more, the company serves mid-market and enterprise clients, offering comprehensive expertise in Cloud Migration, Data Platforms, DevOps, IoT, AI/ML, and more.

CloudThat is the first Indian Company to win the prestigious Microsoft Partner 2024 Award and is recognized as a top-tier partner with AWS and Microsoft, including the prestigious ‘Think Big’ partner award from AWS and the Microsoft Superstars FY 2023 award in Asia & India. Having trained 850k+ professionals in 600+ cloud certifications and completed 500+ consulting projects globally, CloudThat is an official AWS Advanced Consulting Partner, Microsoft Gold Partner, AWS Training PartnerAWS Migration PartnerAWS Data and Analytics PartnerAWS DevOps Competency PartnerAWS GenAI Competency PartnerAmazon QuickSight Service Delivery PartnerAmazon EKS Service Delivery Partner AWS Microsoft Workload PartnersAmazon EC2 Service Delivery PartnerAmazon ECS Service Delivery PartnerAWS Glue Service Delivery PartnerAmazon Redshift Service Delivery PartnerAWS Control Tower Service Delivery PartnerAWS WAF Service Delivery PartnerAmazon CloudFront Service Delivery PartnerAmazon OpenSearch Service Delivery PartnerAWS DMS Service Delivery PartnerAWS Systems Manager Service Delivery PartnerAmazon RDS Service Delivery PartnerAWS CloudFormation Service Delivery PartnerAWS ConfigAmazon EMR and many more.

FAQs

1. Can only EC2 resources be tracked using lambda?

ANS: – No, we can also track other running resources of AWS, by just assigning the boto client to the required resource name

2. Are these EC2 resources from all the regions in the account?

ANS: – The list of resources given is just from a single AWS region.

3. Can we track another resource in the same function?

ANS: – Yes, writing a different resource tracking code in the same function can help to track multiple resources using the same function.

WRITTEN BY Sandeep Cheruku

Share

Comments

    Click to Comment

Get The Most Out Of Us

Our support doesn't end here. We have monthly newsletters, study guides, practice questions, and more to assist you in upgrading your cloud career. Subscribe to get them all!