Architecture Components Flashcards
Three pillars of IaaS
- VMs
- Storage
- Networking
Six VM Instance Types

Availability Sets, Fault Domains, Update Domains
When creating VMs, if they are put into an availability set, Azure spreads them across Fault Domains and Update Domains.
- Fault Domain - Seperate Server Racks for increased fault tolerance
- Update Domains - Definable segments in an availability set for patching/updating
Availability Zone
Specific data center in a given region. Assignable to your VM (where available)
VHD
Virtual representation of a HDD.
- Stored in an AZ storage account
- Attaches to a VM
- Can contain partitions, file system, files, folders
VHD Encryption
- VHDs not encrypted out of the box
- Windows VHDs can be encrypted with Windows Bitlocker
- Bitlocker Integrated with AZ Keyvault
ARM Templates
Azure Resource Manager Templates
- Part of Infrastructure as Code
- Declarative JSON file
- Specify resources and properties to deploy
Deployment Slots
One or more running versions of a web app
Allow you to swap new code in and amongst
Typically
- Production
- Staging
- Last-Known-Good

Azure CDN
Content Delivery Network
MS Edge servers that sit at point-of-presence
Logical Server
Container for one or more Azure SQL databases
Enables performing admin tasks across multiple SQL DBs including
- Specifying Regions
- Login Info
- Firewall rules
- auditing
- threat detection
- failover groups
App Service Plan
Needed to use Azure app services. Defines the compute resources available to support your web, api and mobile apps.
Specifically
- Region
- Number and size of VMs
- Pricing Tier
Azure Cache for Redis
Managed in-memory data store based on Open-Source Redis.
Used for
- Data (DB) caching
- Content caching
- Session storage
- Message queuing
- Distributed transactions
Cosmos DB
Fully managed NoSQL DB
Highly scalable storage for
- Tables
- Documents
- Graphs
NoSQL DB (Cosmos, etc.)
- Data hashed and stored into partitions
- Input to the hash is the primary key
- High performance and low latency
- Highly scalable
Continuous Integration
- First part part of Continous Delivery
- Automated builds and tests run after code check-ins
- More frequent commits = find and address bugs quicker
Continuous Delivery
- Expands on Continous Integration
- Automatic Deployment of Code after build stage
- Allows further testing (UI, load testing, integration)
Continuous Deployment vs Continous Delivery
- Continuous Delivery has a manual trigger before production deployment (stage gate for approvals, etc.)
- Continuous Deployment automatically deploys
What is the general process for cloud migration?
- Assess Workload Readiness
- Migrate Small to Large Systems
- Migrate Data
- Optimize - Decomission unneeded assets
- Monitor

What happens in the cloud migration assessment step?
- Identify in scope workloads, data
- Define migration options (rehost, refactor, rearchitect, rebuild, replace)
- Involve and enlist key stakeholders
- Estimate Costs
- Identify Tools
What happens in the cloud migration Migrate step?
- Small to Large Workloads
- Prepare source and target
- Start replication
- Test Replication
- Fail Systems over to target
What is AZ Virtual Networking?
- Fundamental building block for your AZ private network
- Enables resources to securely communicate with each other
What capabilities to AZ virtual networks provide?
- Isolation and Segmentation
- Internet Communications
- Comms between Azure resources
- Comms with on-prem resources
- filter and route network traffic
- Connection to other VNets
What is an Address Space?
VPN Gateway
- An endpoint for encrypted connections
- On-Prem -> Azure
- Azure Region Azure Region
Three types of VPN Gateway architectures
Point to site (single external to AZ)
Site to site (mutliple on prem to mult Az)
Site to Site (fast network)
App Service Plan
Defines the compute resources for Web Apps, API Apps, and Mobile Apps
- Resources Include
- Region
- Number of VM instances
- Size of VMs
- Pricing Tier
App Service
- enables you to build and host web apps, mobile back ends, and RESTful APIs in the programming language of your choice without managing infrastructure.
- It offers auto-scaling and high availability, supports both Windows and Linux, and enables automated deployments from GitHub, Azure DevOps, or any Git repo