Foundations Glossary
Introduction
Before you can design a cloud architecture, you need to understand the platform you're building on. The Foundations glossary is the entry point for the concepts that describe how cloud platforms are structured, how they handle failure, and how you think about keeping systems running when things go wrong.
This section covers the vocabulary of cloud geography — regions, Availability Zones, edge locations — and the resilience concepts that build on that geography: high availability, fault tolerance, disaster recovery, RPO, RTO, backup, and replication. It also covers the shared responsibility model, which defines where the provider's job ends and yours begins. These are not just exam topics; they are the mental framework every architecture decision sits inside.
If you've ever been unsure about the difference between a fault domain and an Availability Zone, or wondered whether backup and replication serve the same purpose, this section is designed to give you clear, precise answers. Each entry explains what a concept means, how it relates to others, and why it matters when you're placing workloads, defining recovery strategies, or reading an SLA.
Why Cloud Foundations Vocabulary Matters
Cloud platforms are physically massive, globally distributed systems. They use terms like "region" and "Availability Zone" to describe that physical layout, but the meaning of those terms — and the failure isolation they imply — isn't always obvious. A region is not just "a place where servers live." It's a boundary for latency, data residency, and blast radius. An Availability Zone is not just "a data center." It's a failure domain that you can use — or misuse — when designing for resilience.
The resilience concepts that build on this geography are similarly easy to confuse. High availability and fault tolerance both deal with keeping systems up, but they address different levels of failure and demand different architectural commitments. Disaster recovery is a separate concern entirely, one that involves recovery objectives (RPO and RTO) that most people get backwards the first time they encounter them. Backup and replication sound like synonyms, but they solve fundamentally different problems — and mistaking one for the other can leave you with a recovery gap you don't discover until it's too late.
These terms appear throughout cloud documentation, architecture guidance, and certification exams. They're rarely explained together in a way that shows how they connect. This glossary section closes that gap by treating foundations as a connected set of ideas, not a list of vocabulary items.
What You'll Find in This Foundations Glossary
The glossary entries in this section are organized around a few natural groups:
- Platform geography and deployment boundaries — the physical and logical structures that determine where your resources live and what can fail together.
- Fault isolation and maintenance boundaries — concepts that describe how cloud providers isolate failures and sequence maintenance to limit impact.
- Availability and failure tolerance concepts — the terminology of keeping systems running when components fail.
- Disaster recovery and recovery objectives — the language of planning for large-scale outages and defining acceptable recovery targets.
- Data protection and restoration concepts — backup, replication, and the mechanisms that support recovery.
- Shared responsibility and operational boundaries — the model that divides duties between provider and customer.
Every entry focuses on conceptual understanding. You'll learn what a term means, where it fits in the broader cloud picture, and how it connects to related terms. The goal is to give you a foundation you can build on — in guides, in architecture articles, and in real design work.
Explore Foundations Concepts by Theme
Regions, Availability Zones, and Platform Geography
Cloud platforms span the globe, but they don't spread resources evenly across it. They organize infrastructure into regions — large geographic areas containing multiple, physically separate Availability Zones. A region is a boundary for latency, data residency, and service availability; not every region offers every service. An Availability Zone is one or more discrete data centers within a region, engineered so that a failure in one zone does not take down others.
Understanding this geography is the first step in placement decisions. Which region you choose affects latency to your users, compliance with data sovereignty laws, and which services you can use. How you spread resources across Availability Zones determines whether your application survives a data center power outage or goes offline with it. The glossary also covers edge locations, which extend the cloud platform closer to end users for content delivery and acceleration, and are distinct from regions and zones in both purpose and deployment model.
Fault Domains and Update Domains
Within the physical infrastructure of a cloud platform, providers use additional boundaries to manage failure and maintenance. A fault domain is a group of hardware that shares a common point of failure — typically a rack, a power supply, or a network switch. Spreading instances across fault domains, either explicitly or implicitly through Availability Zone placement, limits how much hardware can fail at once.
Update domains address a different concern: planned maintenance. When a cloud provider needs to patch hypervisors, replace hardware, or roll out platform updates, they sequence the work so that only one update domain is affected at a time. Understanding these boundaries helps you interpret provider SLAs, plan for maintenance events, and avoid configurations where an update could take down every instance of a service simultaneously. While the terminology is most prominent in Azure, the underlying concepts apply across providers.
High Availability and Fault Tolerance
Resilience begins with keeping the system running when something breaks. High availability (HA) means designing a system so that a failure — a crashed instance, a failed disk, a lost Availability Zone — does not cause a prolonged outage. HA typically involves redundancy, automatic failover, and a brief interruption during the failover process. It's the most common resilience target for cloud workloads.
Fault tolerance goes further. A fault-tolerant system is designed to continue operating without any interruption, even when components fail. This requires redundant components running in lockstep or with seamless failover, and it's considerably more expensive and complex to achieve. The glossary explains the architectural difference between these two levels of resilience, the kinds of failures each one addresses, and why most systems target HA rather than full fault tolerance.
Disaster Recovery and Recovery Objectives
When a failure exceeds what redundancy can handle — a region-wide outage, a massive data corruption event, a catastrophic misconfiguration — the response shifts from availability to recovery. Disaster recovery (DR) is the set of policies, procedures, and architectural patterns that restore service after a large-scale disruption.
DR planning revolves around two numbers: the Recovery Point Objective (RPO) and the Recovery Time Objective (RTO). RPO defines how much data you can afford to lose, measured in time — if your RPO is one hour, you must back up or replicate data frequently enough that no more than one hour of data is lost in a disaster. RTO defines how quickly you must restore service. These two metrics are independent: you can have a low RPO with a high RTO, or vice versa. The glossary explains both, including how they interact and why defining them is the prerequisite for any DR strategy.
Backup, Replication, and Data Protection
Backup and replication are both mechanisms for protecting data, but they serve different purposes and enable different recovery scenarios. A backup is a point-in-time copy of data, stored separately and used for restoration after data loss, corruption, or deletion. Backups are essential for recovering from logical errors — accidentally dropped tables, ransomware, application bugs that corrupt data over time.
Replication continuously copies data to another location, keeping a near-real-time copy available for failover. Replication protects against infrastructure failure — a failed database instance, a lost Availability Zone — by keeping a standby ready. But replication alone does not protect against logical errors, because the error replicates along with everything else. The glossary explains why you typically need both: replication for availability, backup for recoverability.
Shared Responsibility and Cloud Operating Boundaries
The Shared Responsibility Model defines who is responsible for what in a cloud environment. The provider secures the physical infrastructure, the hypervisor, the network fabric, and the managed service platform. The customer secures their data, their access controls, their application code, and their configurations. The exact boundary shifts depending on the service type — IaaS leaves more to the customer; SaaS takes more over.
Understanding shared responsibility is foundational to cloud security and resilience. It affects how you think about patching, encryption, incident response, and compliance. When a provider publishes an SLA, the shared responsibility model tells you what you must do to qualify for it. The glossary explains the model, the boundary variations across service types, and why assuming the provider handles more than they do is a common and costly mistake.
Core Terms You'll See in This Section
Within the Foundations glossary, you'll encounter a set of terms that form the backbone of cloud platform and resilience vocabulary. Region and Availability Zone describe where resources are physically located and what can fail together. Fault domain and update domain add granularity to failure isolation and maintenance sequencing. Edge location extends the geography story to content delivery and user proximity.
On the resilience side, high availability and fault tolerance describe two different levels of uptime commitment. Disaster recovery addresses the failures that availability alone cannot handle, and RPO and RTO put precise numbers on what recovery means for your business. Backup and replication are the mechanisms that support those recovery objectives, each solving a different part of the data protection problem. Finally, the shared responsibility model frames the entire discussion by clarifying what the cloud provider does for you — and, more importantly, what it does not.
How to Use This Foundations Glossary
This section supports several learning paths and use cases.
- Learning cloud fundamentals from scratch. Start with regions and Availability Zones to understand platform geography. Then move through fault domains, high availability, and disaster recovery. The entries build on each other in a natural sequence.
- Clarifying a specific term during study or work. Jump directly to any entry — RPO, shared responsibility, fault domain — and read a self-contained explanation with links to related concepts.
- Building a foundation before architecture study. Before you tackle architecture articles on multi-region design or resilience patterns, ensure the foundational vocabulary is solid. These glossary entries give you the precise definitions those architecture discussions assume.
- Resolving confusion between similar concepts. If you're unsure about the difference between fault tolerance and high availability, or between backup and replication, the glossary provides clean distinctions. The Comparisons section goes deeper on the most commonly confused pairs.
- Preparing for certification exams. These terms appear in scenario questions across every major cloud certification. The glossary gives you the conceptual clarity to understand what the question is really asking.
Foundations Glossary vs Comparisons vs Guides vs Architecture
CloudComputingDevPro organizes cloud content across four layers, and the Foundations glossary is the entry point to all of them:
- Glossary pages define a single foundational concept — what a region is, what RPO means, how the shared responsibility model works.
- Comparison pages draw the line between two frequently confused concepts — high availability vs fault tolerance, backup vs replication, RPO vs RTO.
- Guide pages connect multiple foundational concepts into a structured explanation — a guide on cloud resilience fundamentals ties together HA, DR, RPO, RTO, backup, and replication into a coherent mental model.
- Architecture pages apply those concepts to design decisions — an article on multi-region DR strategy uses the vocabulary of regions, zones, RPO, and RTO to evaluate recovery patterns and trade-offs.
A typical progression might look like this: you start with glossary entries for Availability Zone, high availability, and disaster recovery. A comparison page on HA vs fault tolerance sharpens the distinction. A resilience fundamentals guide connects them with RPO, RTO, backup, and replication. An architecture article on designing for high availability then shows how these concepts drive real decisions about instance placement, load balancer configuration, and failover automation.
Recommended Starting Points
If you're new to cloud foundations, begin with these glossary entries:
- Region and Availability Zone — understand the physical and logical layout of cloud platforms. These two terms underpin every placement decision.
- High Availability — learn what HA really means in practice, how it differs from fault tolerance, and why it's the most common resilience target.
- Disaster Recovery — understand the recovery mindset and why DR is a separate concern from HA.
- RPO and RTO — master the two numbers that define your recovery strategy. Most people get them backwards at first.
- Backup and Replication — learn why both are essential and how they solve different data protection problems.
Each entry is self-contained but links to related concepts and onward to comparisons and guides.
Certification-Oriented Learning
Cloud foundations vocabulary is tested across every major cloud certification. Architecture exams ask you to place resources across Availability Zones to meet resilience requirements. Administrator exams test your understanding of backup and replication configurations. Security exams examine your grasp of shared responsibility.
The Foundations glossary helps you build the vocabulary and conceptual clarity that scenario-based questions demand. For focused, exam-style practice to complement this conceptual work, visit CloudCertPro.com.
FAQ
What is included in a cloud foundations glossary?
It covers platform geography (regions, Availability Zones, edge locations), fault isolation boundaries (fault domains, update domains), resilience concepts (high availability, fault tolerance, disaster recovery), recovery objectives (RPO, RTO), data protection (backup, replication), and the shared responsibility model.
What cloud foundation terms should beginners learn first?
Start with region, Availability Zone, high availability, disaster recovery, RPO, RTO, backup, and replication. These eight terms form the core of cloud resilience understanding.
What is the difference between a region and an Availability Zone?
A region is a geographic area containing multiple, physically separate Availability Zones. An Availability Zone is one or more discrete data centers within a region, engineered to fail independently. The glossary explains both and how they relate.
What is the difference between high availability and disaster recovery?
High availability addresses component-level failures within a region through redundancy and automatic failover. Disaster recovery addresses large-scale disruptions (like a regional outage) through cross-region recovery patterns. They operate at different scopes and require different architectural patterns.
Are backup and replication the same thing?
No. Backup creates point-in-time copies for restoration after data loss or corruption. Replication continuously copies data for near-real-time failover. They protect against different failure modes, and most production systems need both.
What do RPO and RTO mean in cloud computing?
RPO (Recovery Point Objective) defines acceptable data loss measured in time. RTO (Recovery Time Objective) defines acceptable downtime before service is restored. They are independent metrics that together define your recovery requirements.
What is the shared responsibility model?
It defines the boundary between what the cloud provider is responsible for (physical infrastructure, hypervisor, managed services) and what the customer is responsible for (data, access control, application configuration). The boundary shifts depending on whether you use IaaS, PaaS, or SaaS.
Can these cloud foundations glossary pages help with cloud certifications?
Absolutely. Foundations terminology is tested across every major architecture and administration certification. A clear understanding of regions, zones, HA, DR, RPO, RTO, and shared responsibility is essential for interpreting exam scenarios correctly.