Blog

How to Build and deploy AWS Lambda function with .NET 6

Build and deploy AWS Lambda function with .NET 6 Objective The objective of this article to demonstrate how to build and deploy a .NET6 application in AWS lambda. Prerequisites Step-1: Build .NET6 based AWS lambda from Visual Studio Create a new .NET 6 Lambda Function Project Write Lambda function Create a supporting model class “Customer.cs” […]

How to create and deploy S3 bucket using CloudFormation template

How to create and deploy S3 bucket using CloudFormation template? Objective Create a CloudFormation stack that creates an S3 bucket with some commonly used options. Prerequisites for this lab Cloud formation template example to create AWS S3 bucket Create a new file called “create-s3-cf.template” and paste the following code to create a simple S3 bucket. […]

How to Setup AWS Auto Scaling

How to setup AWS Auto Scaling? Objective The objective of setting this AWS auto-scaling lab is to ensure that your application can handle network traffic by automatically adjusting the number of EC2 instances that are running. AWS AutoScaling allows scale resources up or down through a pre-defined threshold, which helps you only pay for the […]

How to setup AWS application load balancer

How to setup AWS application load balancer? Objective The objective of this AWS Application Load Balancer lab is to learn how to create and configure an AWS Application Load Balancer to distribute incoming traffic across multiple EC2 instances in different availability zones. Prerequisites for this lab Steps by step guide for creating AWS application load […]

Amazon RDS: A Guide to Relational Database Services in the Cloud

Amazon RDS: A Guide to Relational Database Services in the Cloud Introduction Amazon Relational Database Service (RDS) is a cloud-based web service provided by Amazon Web Services (AWS) that makes it easier for organizations to set up, operate, and scale relational databases in the cloud. Reduced database maintenance overhead, automatic software patching, and high availability […]

Types of database services in AWS Cloud

Types of database services in AWS Cloud The way that organizations manage, store, and access their data has been changed by the cloud. AWS is leading this shift by providing a full range of database services that are tailored to the requirements of companies of all sizes. AWS provides the solution for you whether you […]

AWS Lambda: An Introduction to Function as a Service

AWS Lambda: An Introduction to Function as a Service In this article, you will learn the fundamentals of AWS Lambda as well as its main benefits, drawbacks, and features. What is AWS Lambda? AWS Lambda is a service offered by Amazon Web Services (AWS) that allows you to run your code without the need for […]

Say Goodbye to Servers: An Introduction to Serverless

Say Goodbye to Servers: An Introduction to Serverless Introduction A recent development in the field of cloud computing is Serverless computing, which frees developers from worrying about the infrastructure’s so they can concentrate on developing code. In this arrangement, the user only pays for the resources they really utilize, and the cloud provider is in […]

AWS CloudFormation: Simplifying Infrastructure as Code

AWS CloudFormation: Simplifying Infrastructure as Code What is CloudFormation? CloudFormation is a service provided by Amazon Web Services (AWS) that enables users to create and manage AWS resources using templates. These templates are written in either JSON or YAML and describe the resources that need to be created, along with their properties and configurations. The […]

Scroll to top