Day 03 – The AWS Console Tour (Mastering the Cockpit)

The CyberSec Guru

Updated on:

The AWS Console Tour

If you like this post, then please share it:

Buy me A Coffee!

Support The CyberSec Guru’s Mission

🔐 Fuel the cybersecurity crusade by buying me a coffee! Why your support matters: Zero paywalls: Keep the content 100% free for learners worldwide, Writeup Access: Get complete writeup access within 12 hours of machine drop along with scripts and commands.

“Your coffee keeps the servers running and the knowledge flowing in our fight against cybercrime.”☕ Support My Work

Buy Me a Coffee Button

Welcome to Day 3 of your AWS 30-Day Roadmap.

On Day 1, we learned the theory of the cloud. On Day 2, we met the Core Services (EC2, S3, IAM, VPC, RDS).

Today, we stop talking and start doing.

The AWS Management Console is your command center. It is the interface between you and the millions of servers in Amazon’s data centers. Whether you are launching a startup, managing a Fortune 500 company’s data, or just learning, this is where it happens.

For a beginner, the Console can look like the cockpit of a fighter jet—hundreds of buttons, flashing lights, and cryptic menus. It is easy to feel overwhelmed.

In this ultimate guide, we are going to demystify every inch of the AWS Console. We will explore the layout, explain the hidden features, and teach you how to navigate like a pro.

Getting In (The Login Process)

Before we tour the house, we have to unlock the front door.

1. The Root User vs. IAM User

When you log in, you will see two options. This is the first test of your cloud knowledge.

  • Root User: This is the email address you used to sign up. It has unlimited power. It can delete your entire account, view your billing, and cancel your subscription.
    • Rule: Never use the Root User for daily tasks. Log in once, create an IAM user for yourself, and then lock the Root User credentials away in a safe.
  • IAM User: This is a sub-account created by the Root User. It has limited permissions (that you define).
    • Rule: Always use an IAM User for your daily work.

2. The Login Screen

Go to aws.amazon.com/console and click “Sign In”.

  • Account ID: If you are an IAM user, you need your 12-digit Account ID.
  • MFA (Multi-Factor Authentication): If you are smart (and you are), you have enabled MFA. You will need the code from your phone (Google Authenticator or Authy) to get in.
AWS Root vs IAM User
AWS Root vs IAM User

The “Home” Dashboard (The 10,000 Foot View)

Congratulations, you are in! The landing page is called the Console Home. It was redesigned recently to be more widget-based.

1. The Unified Search Bar (Top Center)

This is your best friend. In the old days, you had to hunt through menus. Now, you just type:

  • Services: Type “S3” or “EC2” to jump to a tool.
  • Features: Type “Security Groups” to jump directly to a feature inside EC2.
  • Documentation: Type “How to create a bucket” to find official guides.
  • Pro Tip: You can press Alt+S (Windows) or Option+S (Mac) to focus the search bar instantly.

2. The Widget Layout

The main area is covered in “Widgets” that you can drag, drop, and resize.

  • Recently Visited: Shows the last few services you clicked. Essential for jumping back into work.
  • Cost and Usage: A mini-graph showing your estimated bill for the month. Keep an eye on this!
  • AWS Health: Shows if AWS is having a global outage. If your server isn’t working, check this first.
  • Favorites Bar: You can pin services to the top bar icon list. Do this for EC2 and S3 immediately.
AWS Console Overview
AWS Console Overview

The Region Selector (Location, Location, Location)

Look at the top right corner. You will see a city name, like N. Virginia or Ohio or Frankfurt. This is the Region Selector.

Why is this the most common mistake for beginners? Imagine this scenario:

  1. You are in N. Virginia (us-east-1).
  2. You launch a virtual server (EC2).
  3. The next day, you log in, but the Region Selector defaults to Ohio (us-east-2).
  4. You look at your dashboard and scream, “WHERE IS MY SERVER? IT’S GONE!”
  5. It’s not gone. It’s just in a different room.

The Golden Rule: Always check which Region you are in before you create anything.

  • US-East-1 (N. Virginia): The oldest, biggest, and most popular region. New features usually drop here first.
  • Global Services: Some services (like IAM and Route53) do not have regions. When you click them, the selector greys out and says “Global”.
AWS Region Selector
AWS Region Selector

CloudShell (The Hacker Terminal)

See that little icon that looks like a terminal prompt >_ near the search bar? That is CloudShell.

  • What is it? It is a browser-based command line interface (CLI).
  • Why use it? Sometimes clicking buttons is slow. If you want to create 50 folders in S3, typing one command is faster than clicking “Create Folder” 50 times.
  • It comes pre-installed with the AWS CLI tools, Python, and Node.js. It is free to use.

The Billing Dashboard (The Scary Part)

As a beginner, money is your biggest fear. Let’s conquer it. Click your Account Name in the top right -> Billing Dashboard.

1. The Spend Summary

This shows your month-to-date cost and a forecast for the end of the month.

  • Note: The data is usually delayed by 24 hours.

2. Free Tier Widget

If you are on a new account, there is a widget called “Top Free Tier Services by Usage”.

  • It tracks your limits. Example: “EC2 t2.micro: used 500 of 750 hours”.
  • Check this weekly. If you exceed the limits, you start paying.

3. Cost Explorer

This is a deeper tool that visualizes your spending. You can filter by “Service” (How much did S3 cost me?) or by “Region”.

AWS Cost Explorer
AWS Cost Explorer

The Support Center (Help!)

What happens if something breaks? Click the Question Mark (?) icon in the top right -> Support Center.

  • Basic Support (Free): You can only file tickets for “Account and Billing” issues (e.g., “I lost my password” or “Why is my bill high?”). You cannot ask technical questions like “Why is my Linux server crashing?”
  • Developer/Business Support (Paid): You pay extra to get technical help from AWS engineers.

Settings & Preferences

You can customize the console to fit your style. Click the Gear Icon (Settings).

  • Language: Change the console language (English, Spanish, Japanese, etc.).
  • Dark Mode: Yes, AWS has a Dark Mode! Save your eyes during those late-night coding sessions. Switch it to “Dark” in the display settings.

Hands-On Activity (Your First Action)

Let’s stop looking and start touching. We will do a safe, free activity.

Task: Create an S3 Bucket (Your Cloud Folder)

  1. Search: Go to the top search bar, type S3, and press Enter.
  2. The Dashboard: You are now in the S3 Console. Notice how the layout changed? Every service has its own unique dashboard.
  3. Create: Click the orange “Create bucket” button.
  4. Name: Enter a unique name.
    • Constraint: S3 names must be globally unique. test is taken. Try day3-console-tour-[yourname]-[year].
  5. Region: Ensure it is set to your preferred region (e.g., us-east-1).
  6. Defaults: Scroll down. Ignore the complex settings (ACLs, Versioning, Encryption) for now. Leave them as default.
  7. Finalize: Click “Create bucket” at the bottom.
  8. Verify: You should see your bucket in the list.
  9. Clean Up: Click the radio button next to your bucket name -> Click “Delete” -> Type the name of the bucket to confirm -> Click “Delete bucket”.
    • Lesson: Always clean up your resources to avoid clutter (and costs)!
S3 Bucket Workflow
S3 Bucket Workflow

Conclusion & Summary

You have survived Day 3! You now know how to enter the building, read the map, check the electricity meter (billing), and even build a small box (S3 bucket).

Key Takeaways:

  1. Search Bar is faster than menus.
  2. Check your Region every time you log in.
  3. Monitor Billing frequently to avoid surprises.
  4. Dark Mode exists (and is awesome).

Tomorrow, on Day 4, we will dive deep into S3 (Simple Storage Service). We will learn how to host a static website, manage file permissions, and understand storage classes.

The cockpit is yours. Fly safe.

Want the Next Part Sooner?

Can’t stand the suspense? Skip the wait! Members unlock the next chapter instantly and get exclusive early access to every future update.

Become a Member

Buy me A Coffee!

Support The CyberSec Guru’s Mission

🔐 Fuel the cybersecurity crusade by buying me a coffee! Your contribution powers free tutorials, hands-on labs, and security resources.

Why your support matters:
  • Writeup Access: Get complete writeup access within 24 hours
  • Zero paywalls: Keep the content 100% free for learners worldwide

Perks for one-time supporters:
☕️ $5: Shoutout in Buy Me a Coffee
🛡️ $8: Fast-track Access to Live Webinars
💻 $10: Vote on future tutorial topics + exclusive AMA access

“Your coffee keeps the servers running and the knowledge flowing in our fight against cybercrime.”☕ Support My Work

Buy Me a Coffee Button

If you like this post, then please share it:

AWS 101

Discover more from The CyberSec Guru

Subscribe to get the latest posts sent to your email!

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from The CyberSec Guru

Subscribe now to keep reading and get access to the full archive.

Continue reading