Complete the code to set the minimum capacity of an Auto Scaling group to 2.
"MinSize": [1]
The minimum capacity defines the smallest number of instances the group should have. Setting it to 2 ensures at least two instances run.
Complete the code to set the maximum capacity of an Auto Scaling group to 6.
"MaxSize": [1]
The maximum capacity limits how many instances the group can scale out to. Setting it to 6 means no more than six instances will run.
Fix the error in setting the desired capacity to 8 when maximum capacity is 5.
"DesiredCapacity": [1]
The desired capacity cannot be greater than the maximum capacity. Since max is 5, desired must be 5 or less.
Fill both blanks to set minimum capacity to 1 and desired capacity to 3.
"MinSize": [1], "DesiredCapacity": [2]
Minimum capacity is set to 1 to keep at least one instance running. Desired capacity is 3 to start with three instances.
Fill all three blanks to set minimum capacity to 2, maximum capacity to 5, and desired capacity to 4.
"MinSize": [1], "MaxSize": [2], "DesiredCapacity": [3]
Minimum capacity is 2 to keep at least two instances running. Maximum capacity is 5 to limit scaling. Desired capacity is 4 to start with four instances.