Complete the code to specify the minimum number of tasks for ECS service auto scaling.
MinCapacity: [1]The minimum capacity for ECS service auto scaling should be set to a positive integer like 1 to ensure at least one task is running.
Complete the code to define the maximum number of tasks for ECS service auto scaling.
MaxCapacity: [1]The maximum capacity defines the upper limit of tasks the ECS service can scale to. Setting it to 10 allows scaling up to 10 tasks.
Fix the error in the target tracking scaling policy configuration by completing the missing value.
TargetValue: [1]The target value for CPU utilization in ECS auto scaling is commonly set to 75% to balance performance and cost.
Fill both blanks to configure the scalable target resource ID and scalable dimension for ECS service auto scaling.
ResourceId: [1] ScalableDimension: [2]
The resource ID must specify the ECS service in the format 'service/clusterName/serviceName'. The scalable dimension for ECS service desired count is 'ecs:service:DesiredCount'.
Fill all three blanks to complete the CloudFormation snippet for ECS service auto scaling target and policy.
AutoScalingTarget: MinCapacity: [1] MaxCapacity: [2] ResourceId: [3]
MinCapacity is set to 2 to keep at least two tasks running. MaxCapacity is 10 to allow scaling up. ResourceId specifies the ECS service path.