0
0
AWScloud~10 mins

Launching an RDS instance 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 specify the database engine when launching an RDS instance.

AWS
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t2.micro --engine [1] --allocated-storage 20
Drag options to blanks, or click blank then click option'
Amysql
Bdocker
Cnginx
Dlambda
Attempts:
3 left
💡 Hint
Common Mistakes
Using unsupported engine names like 'docker' or 'nginx'.
Leaving the engine parameter empty.
2fill in blank
medium

Complete the code to specify the instance class for the RDS instance.

AWS
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class [1] --engine mysql --allocated-storage 20
Drag options to blanks, or click blank then click option'
Adb.large
Bdb.t2.micro
Cec2.micro
Dlambda.small
Attempts:
3 left
💡 Hint
Common Mistakes
Using EC2 instance types instead of RDS instance classes.
Choosing instance classes that do not start with 'db.'.
3fill in blank
hard

Fix the error in the command to enable public accessibility for the RDS instance.

AWS
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t2.micro --engine mysql --allocated-storage 20 --publicly-accessible [1]
Drag options to blanks, or click blank then click option'
Aenable
Bon
Cyes
Dtrue
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-boolean words like 'enable' or 'yes' instead of 'true'.
Omitting the parameter value.
4fill in blank
hard

Fill both blanks to specify the master username and password for the RDS instance.

AWS
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t2.micro --engine mysql --allocated-storage 20 --master-username [1] --master-user-password [2]
Drag options to blanks, or click blank then click option'
Aadmin
Bpassword123
Croot
D123456
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping username and password values.
Using insecure or empty passwords.
5fill in blank
hard

Fill all three blanks to create an RDS instance with a specific storage type, multi-AZ deployment, and backup retention period.

AWS
aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t2.micro --engine mysql --allocated-storage 20 --storage-type [1] --multi-az [2] --backup-retention-period [3]
Drag options to blanks, or click blank then click option'
Agp2
Btrue
C7
Dstandard
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'gp2' instead of 'standard' when 'standard' is required.
Setting 'multi-az' to a non-boolean value.
Using invalid backup retention values like zero or negative numbers.