0
0
AWScloud~10 mins

Minimum, maximum, and desired capacity in AWS - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the minimum capacity of an Auto Scaling group to 2.

AWS
"MinSize": [1]
Drag options to blanks, or click blank then click option'
A10
B5
C0
D2
Attempts:
3 left
💡 Hint
Common Mistakes
Setting minimum capacity higher than maximum capacity.
Using zero when you want at least one instance.
2fill in blank
medium

Complete the code to set the maximum capacity of an Auto Scaling group to 6.

AWS
"MaxSize": [1]
Drag options to blanks, or click blank then click option'
A6
B3
C1
D10
Attempts:
3 left
💡 Hint
Common Mistakes
Setting maximum capacity lower than minimum capacity.
Choosing a number too low for expected traffic.
3fill in blank
hard

Fix the error in setting the desired capacity to 8 when maximum capacity is 5.

AWS
"DesiredCapacity": [1]
Drag options to blanks, or click blank then click option'
A10
B8
C5
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Setting desired capacity higher than maximum capacity.
Ignoring capacity limits and causing deployment errors.
4fill in blank
hard

Fill both blanks to set minimum capacity to 1 and desired capacity to 3.

AWS
"MinSize": [1], "DesiredCapacity": [2]
Drag options to blanks, or click blank then click option'
A1
B2
C3
D4
Attempts:
3 left
💡 Hint
Common Mistakes
Setting desired capacity lower than minimum capacity.
Confusing minimum and desired capacity values.
5fill in blank
hard

Fill all three blanks to set minimum capacity to 2, maximum capacity to 5, and desired capacity to 4.

AWS
"MinSize": [1], "MaxSize": [2], "DesiredCapacity": [3]
Drag options to blanks, or click blank then click option'
A2
B5
C4
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Setting desired capacity outside the min-max range.
Mixing up min, max, and desired values.