DevOpsLesson
DevOpsLesson

Free, comprehensive DevOps tutorials and learning roadmaps. Master Docker, Kubernetes, CI/CD, and more.

Stay Updated

Get notified about new tutorials and features.

Tutorials

  • What is DevOps?
  • Docker Tutorial
  • Terraform Tutorial
  • CI/CD Pipeline
  • All Tutorials

Roadmaps

  • DevOps Engineer
  • Cloud Engineer
  • SRE Path
  • All Roadmaps

Company

  • About Us
  • Blog
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 DevOpsLesson. All rights reserved.

DOCKERKUBERNETESTERRAFORMAWSCI/CDLINUXGITDEVOPS ROADMAPCLOUD ROADMAPSRE ROADMAPGIT CHEATSHEETDOCKER CHEATSHEETK8S CHEATSHEETTF CHEATSHEETLINUX CHEATSHEETDOCKERFILE LINTERYAML VALIDATORCRON PARSERREGEX TESTER

Aws Tutorial

Introduction to AWS
AWS Global Infrastructure
Setting Up AWS
AWS IAM
AWS EC2
AWS VPC
AWS S3
AWS RDS
AWS Lambda
AWS ECS and EKS
AWS CloudWatch
AWS CodePipeline
AWS Cost Optimization
AWS Elastic Load Balancing
AWS Auto Scaling
AWS CloudFront
AWS Route 53
AWS DynamoDB
AWS ElastiCache
AWS SQS
AWS SNS
AWS EventBridge
AWS Step Functions
AWS API Gateway
AWS ECR
AWS EKS
AWS CloudFormation
AWS Elastic Beanstalk
AWS KMS
AWS Secrets Manager
AWS WAF and Shield
AWS CloudTrail
AWS Config
AWS Systems Manager
AWS Organizations
AWS EFS
AWS EBS Deep Dive
AWS Kinesis
AWS Athena
AWS CodeDeploy
AWS CodeCommit
AWS CDK
AWS SAM

AWS Console Tour

PreviousPrev
Next

Get comfortable with the AWS Management Console by learning the services menu, search bar, region switcher, and recent history navigation.

The AWS Management Console can feel overwhelming at first because the platform includes hundreds of services. The fastest way to become productive is not memorizing every product name; it is learning the small set of navigation tools you will use repeatedly: the Services menu, the search bar, the region switcher, and the recently visited list.

The search bar is the quickest entry point for most tasks. Start typing “EC2,” “IAM,” or “CloudWatch,” and AWS narrows the list instantly. The Services menu is useful when you know the category, such as Compute or Storage, but not the exact service yet. Over time, most engineers switch fluidly between search for speed and the menu for discovery.

Console areaWhat to use it for
Services menuBrowse services by category
Search barJump directly to a known service
Region switcherChange the active Region for most resources
Recently visitedReturn to services you used moments ago

The region switcher is easy to miss but important. Many AWS resources are regional, so the same service page can look empty if you are viewing the wrong Region. When a teammate says an instance exists but you cannot find it, check the Region before assuming anything is missing.

The recently visited sidebar or history links are practical when you are hopping between EC2, CloudWatch, and IAM during troubleshooting. They save time and reduce navigation friction, especially when you are comparing settings across several services in one session.

The console is convenient for exploration, but try to pair what you learn visually with CLI commands from AWS CLI Setup. Seeing the same concept in both places helps translate one-off clicks into repeatable automation later.

aws help
aws configure list
aws ec2 describe-regions --query 'Regions[].RegionName' --output text

Operational note

Early AWS success usually comes from repeatable habits rather than memorizing every service. Use tags, consistent naming, and a short checklist for account setup, region awareness, and access patterns so new environments feel predictable instead of improvised. That discipline makes later automation, cost control, and incident response much easier. Shared standards like this make future environments easier to launch, review, and support.

Exercise

Finding services

What is usually the fastest way to open a known AWS service in the console?

Exercise

Regional awareness

Why is the Region switcher important in the AWS Console?

PreviousPrev
Next

Continue Learning

AWS Global Infrastructure

Understand AWS Regions, Availability Zones, and Edge Locations so you can choose the right geography for latency, compliance, and high availability.

12 min·Easy

Setting Up AWS

See the core setup steps for a new AWS environment, including account creation, secure access patterns, and the first tools DevOps engineers use every day.

10 min·Easy

AWS Account Setup

Create a secure AWS account foundation by enabling MFA on the root user, setting a billing alarm, and establishing safer daily access patterns.

10 min·Easy

Explore Related Topics

Te

Terraform Tutorials

Manage AWS infrastructure as code

Li

Linux Tutorials

Essential Linux skills for working with EC2

On This Page

Operational note