Book Image

Amazon Web Services Bootcamp

Book Image

Amazon Web Services Bootcamp

Overview of this book

AWS is at the forefront of Cloud Computing today. Businesses are adopting AWS Cloud because of its reliability, versatility, and flexible design. The main focus of this book is teaching you how to build and manage highly reliable and scalable applications and services on AWS. It will provide you with all the necessary skills to design, deploy, and manage your applications and services on the AWS cloud platform. We’ll start by exploring Amazon S3, EC2, and so on to get you well-versed with core Amazon services. Moving on, we’ll teach you how to design and deploy highly scalable and optimized workloads. You’ll also discover easy-to-follow, hands-on steps, tips, and recommendations throughout the book and get to know essential security and troubleshooting concepts. By the end of the book, you’ll be able to create a highly secure, fault tolerant, and scalable environment for your applications to run on.
Table of Contents (16 chapters)

Auto Scaling groups


Auto Scaling is used to manage EC2 instances, whereby a number of instances can be created for our application based on traffic. Auto Scaling helps to keep a group of healthy instances for applications to run. Based on the Auto Scaling configuration, we can add more instances. An Auto Scaling event can be triggered from CloudWatch monitoring, where it measures the metrics configured and if it achieves its threshold limit, it triggers an event to the Auto Scaling group.

AWS Management Console

Go to AWS EC2 Management Console at https://console.aws.amazon.com/ec2/home.

Creating an Auto Scaling group

Create an Auto Scaling group, which will launch scalable instances:

  1. Click Launch Configuration under Auto Scaling on the left menu.
  2. Click Create Auto Scaling Group.
  3. Create the Auto Scaling Group:

Figure 3.34: Creating the Auto Scaling group

Click Create launch configuration.

  1. Select an AMI:

Figure 3.35: Selecting an AMI for the launch configuration

Here we need to select the AMI for our...