0
0
AWScloud~10 mins

Domain registration 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 register a domain using AWS CLI.

AWS
aws route53domains register-domain --domain-name [1] --duration-in-years 1 --admin-contact file://contact.json --registrant-contact file://contact.json --tech-contact file://contact.json --privacy-protect-admin-contact
Drag options to blanks, or click blank then click option'
Atestdomain.org
Bmydomain.net
Cexample.com
Dsampledomain.io
Attempts:
3 left
💡 Hint
Common Mistakes
Using an invalid domain name format.
Omitting the --domain-name option.
2fill in blank
medium

Complete the code to check the availability of a domain using AWS CLI.

AWS
aws route53domains check-domain-availability --domain-name [1]
Drag options to blanks, or click blank then click option'
Anewdomain.com
Btestsite.io
Cexample.org
Dmywebsite.net
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting to specify the domain name.
Using an invalid domain format.
3fill in blank
hard

Fix the error in the AWS CLI command to enable auto-renew for a registered domain.

AWS
aws route53domains update-domain-[1] --domain-name example.com --auto-renew true
Drag options to blanks, or click blank then click option'
Aauto-renew
Brenewal
Csettings
Dconfig
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect subcommand names like 'settings' or 'renewal'.
Omitting the subcommand part.
4fill in blank
hard

Fill in the blank to create a JSON file snippet for domain contact information.

AWS
{
  "ContactType": "[1]",
  "Email": "user@example.com"
}
Drag options to blanks, or click blank then click option'
AOWNER
BTECH
CUSER
DADMIN
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid contact types.
Misspelling the contact type string.
5fill in blank
hard

Fill all three blanks to complete the AWS CLI command to transfer a domain to Route 53.

AWS
aws route53domains transfer-domain-to-aws --domain-name [1] --auth-code [2] --duration-in-years [3]
Drag options to blanks, or click blank then click option'
Aexample.net
BABCD1234
C2
Dexample.com
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect or missing auth codes.
Specifying invalid duration values.