Bird
0
0

You tried to create an RDS instance with the command:

medium📝 Debug Q14 of 15
AWS - RDS and Relational Databases
You tried to create an RDS instance with the command:
aws rds create-db-instance --db-instance-identifier testdb --engine mongo --allocated-storage 20 --db-instance-class db.t3.micro --master-username admin --master-user-password secret123

But it failed. What is the most likely reason?
AThe master username is missing
BThe allocated storage is too low
CThe engine name 'mongo' is not supported by RDS
DThe instance class db.t3.micro is invalid
Step-by-Step Solution
Solution:
  1. Step 1: Check the engine parameter validity

    The engine parameter is set to 'mongo', which is not a supported RDS engine. MongoDB is not supported by RDS.
  2. Step 2: Verify other parameters

    Allocated storage of 20 GB and instance class db.t3.micro are valid. Master username is provided.
  3. Final Answer:

    The engine name 'mongo' is not supported by RDS -> Option C
  4. Quick Check:

    Unsupported engine name causes failure [OK]
Quick Trick: Check engine names carefully; unsupported names cause errors [OK]
Common Mistakes:
MISTAKES
  • Assuming MongoDB is supported by RDS
  • Blaming storage size or instance class incorrectly
  • Overlooking the exact error message

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes