Minimum, maximum, and desired capacity
📖 Scenario: You are managing a cloud application that needs to automatically adjust the number of servers running based on demand. To do this, you will set up an Auto Scaling Group with specific minimum, maximum, and desired capacity values.
🎯 Goal: Create an AWS Auto Scaling Group configuration that defines the minimum number of instances as 2, the maximum number of instances as 5, and the desired capacity as 3.
📋 What You'll Learn
Create a dictionary called
asg_config to hold the Auto Scaling Group settings.Add keys
MinSize, MaxSize, and DesiredCapacity with the exact values 2, 5, and 3 respectively.Use the exact key names and values as specified.
Ensure the configuration is valid for AWS Auto Scaling Group settings.
💡 Why This Matters
🌍 Real World
Auto Scaling Groups automatically adjust the number of servers to handle changes in traffic, saving costs and improving performance.
💼 Career
Understanding how to configure minimum, maximum, and desired capacity is essential for cloud engineers managing scalable applications.
Progress0 / 4 steps