Bird
0
0

Given this AWS CLI output after creating an EKS cluster, what is the cluster status?

medium📝 Command Output Q13 of 15
AWS - EKS
Given this AWS CLI output after creating an EKS cluster, what is the cluster status?
{
  "cluster": {
    "name": "my-cluster",
    "status": "ACTIVE",
    "endpoint": "https://1234567890.gr7.eks.amazonaws.com"
  }
}
ACREATING
BFAILED
CACTIVE
DDELETING
Step-by-Step Solution
Solution:
  1. Step 1: Read the JSON output carefully

    The status field shows "ACTIVE", indicating the cluster is ready.
  2. Step 2: Match status to options

    Only ACTIVE matches the status value "ACTIVE". Others are different lifecycle states.
  3. Final Answer:

    ACTIVE -> Option C
  4. Quick Check:

    Status field = ACTIVE [OK]
Quick Trick: Look for "status" field in output JSON [OK]
Common Mistakes:
  • Confusing status with cluster name
  • Choosing 'CREATING' when cluster is ready
  • Ignoring JSON structure

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes