0
0
AWScloud~30 mins

Domain registration in AWS - Mini Project: Build & Apply

Choose your learning style9 modes available
Domain Registration with AWS Route 53
📖 Scenario: You are setting up a new website and need to register a domain name using AWS Route 53. This project will guide you through creating the necessary configuration to register a domain and prepare it for use.
🎯 Goal: Register a domain name exampledomain123.com using AWS Route 53 with the correct configuration settings.
📋 What You'll Learn
Create a variable with the domain name exampledomain123.com
Add a configuration variable for the domain contact details
Create the AWS Route 53 domain registration resource with the domain name and contact details
Add the final configuration to enable auto-renewal for the domain
💡 Why This Matters
🌍 Real World
Registering a domain is the first step to launching a website or online service. AWS Route 53 provides a way to manage domain names and DNS settings in one place.
💼 Career
Understanding domain registration and configuration is essential for cloud engineers, DevOps professionals, and anyone managing web infrastructure.
Progress0 / 4 steps
1
Create the domain name variable
Create a variable called domain_name and set it to the string "exampledomain123.com".
AWS
Need a hint?

Use a simple assignment statement to create the variable.

2
Add domain contact details configuration
Create a dictionary called contact_details with the keys "FirstName", "LastName", "Email", and "PhoneNumber". Set their values to "John", "Doe", "john.doe@example.com", and "+1234567890" respectively.
AWS
Need a hint?

Use a dictionary with the exact keys and values as specified.

3
Create the AWS Route 53 domain registration resource
Create a dictionary called route53_domain_registration with the keys "DomainName" set to domain_name, and "RegistrantContact" set to contact_details. Also add the key "AdminContact" set to contact_details.
AWS
Need a hint?

Use the variables you created earlier to set the values.

4
Enable auto-renewal for the domain
Add the key "AutoRenew" with the value True to the route53_domain_registration dictionary.
AWS
Need a hint?

Use the dictionary key assignment syntax to add the new key and value.