Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 6 / 41

What Is a Region?

This lesson covers a concept that trips up almost every beginner. AWS operates data centres in geographic areas called regions, and most resources belong to exactly one of them.

Tokyo is ap-northeast-1, Virginia is us-east-1, and so on. A bucket or an instance created in one region does not appear when you look at another.

Running aws ec2 describe-regions lists the regions available to you, along with the endpoint each one uses.

A common stumble is creating a resource, switching region, and concluding it has vanished. It hasn't — you are simply looking somewhere else.

In real work, region choice is driven by latency to your users, by cost (prices differ by region), and by legal requirements about where data may reside.

AWS
Try it (type this into the pseudo terminal)
aws ec2 describe-regions

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)