Amazon Web Services

How to destroy all resources deployed in AWS using AWS Nuke?

How to destroy all resources deployed in AWS using AWS Nuke? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to delete all the resources deployed in an AWS account using AWS Nuke. Sometimes your terraform deployment might fail and leave some orphan resources or your developers need a sandbox type of account where they will do the testing and cleanup after the testing is done. In these scenarios,…

0 Comments

How to get the size of an S3 bucket in AWS?

How to get the size of an S3 bucket in AWS? Hello Everyone Welcome to CloudAffaire and this is Debjeet. There are multiple ways to get the total size of an S3 bucket. You can get the size of the object recursively and sum all the object's sizes to get the total disk space used by your S3 bucket. But if your bucket is having millions or perhaps billions of objects then this becomes…

0 Comments

How to create a custom EC2 image (AMI) using AWS EC2 Image Builder?

How to create a custom EC2 image (AMI) using AWS EC2 Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create a custom EC2 image using AWS EC2 Image Builder with example. What is AWS EC2 image builder? EC2 Image Builder is a fully managed AWS service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date server images that…

0 Comments

How to create an image recipe in AWS Image Builder?

How to create an image recipe in AWS Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create an image recipe in AWS Image Builder service using AWS CLI. What is image recipe in AWS Image Builder? An EC2 Image Builder recipe defines the base image to use as your starting point to create a new image, along with the set of components that you add…

0 Comments

How to create an infrastructure configuration in AWS Image Builder?

How to create an infrastructure configuration in AWS Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create an infrastructure configuration in AWS Image Builder service using AWS CLI. What is the infrastructure configuration in AWS Image Builder? Infrastructure configurations allow you to specify the infrastructure within which to build and test your EC2 Image Builder image. Infrastructure settings include: Instance types for your build and…

0 Comments

How to create a distribution setting in AWS Image Builder?

How to create a distribution setting in AWS Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create a distribution setting in the AWS Image Builder service to share an image between multiple regions or accounts. What is a distribution setting in AWS Image Builder? Once you build, validate and test an image using the AWS Image builder pipeline, you need to tell AWS where to…

0 Comments

How to create a custom component in AWS Image Builder?

How to create a custom component in AWS Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss how to create a custom component in AWS Image Builder service. What is a component in AWS Image Builder? A component defines the sequence of steps required to either customize an instance prior to image creation (a build component), or to test an instance that was launched from the created image…

0 Comments

What is AWS EC2 Image Builder?

What is AWS EC2 Image Builder? Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss AWS EC2 image builder, a fully managed AWS service to build, test and manage EC2 and docker images in AWS. What is AWS image builder? EC2 Image Builder is a fully managed AWS service that makes it easier to automate the creation, management, and deployment of customized, secure, and up-to-date server images that are pre-installed…

0 Comments

AWS Lambda function URL with example

AWS Lambda function URL with example Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we will discuss what is AWS Lambda Function URL and how to create an AWS Lambda Function URL with example. What is Lambda function URL? A function URL is a dedicated HTTP(S) endpoint for your Lambda function. You can create and configure a function URL through the Lambda console or the Lambda API. When you create a function…

1 Comment

S3 multipart upload using AWS CLI with example

S3 multipart upload using AWS CLI with example Hello Everyone Welcome to CloudAffaire and this is Debjeet. Today we are going to discuss how to split a large file into multiple files and upload it into an S3 bucket using the multipart feature. We will also compare the speed of different S3 file upload options like native AWS CLI commands like aws s3 cp or aws s3api put-object, upload using multipart and finally upload…

0 Comments