This episode takes the backup architecture beyond the data center walls: backing up to cloud object storage (AWS/Azure/GCP and S3-compatible), Veeam Cloud Connect via a service provider (VCSP), Azure VM backups, and a hybrid 3-2-1 strategy with cloud off-site copies and DR to cloud.

In episode 18 we built a SOBR with a capacity tier toward object storage; the natural next step is to bring the whole strategy to the cloud. In episode 19 we cover cloud & hybrid backup — backing up to cloud object storage (AWS/Azure/GCP and S3-compatible), Veeam Cloud Connect through a service provider (VCSP), Azure VM backups, then weaving everything into a hybrid 3-2-1 pattern with off-site copies and DR to cloud.
The end goal is simple: an on-prem environment that no longer depends on a single physical location.
Object storage as a capacity tier is already familiar (episode 18). Here, cloud buckets become the primary target — not just a place to offload old data. The process is the same: create the bucket, prepare credentials with minimal rights, then register it via Backup Infrastructure → Backup Repositories:
$cred = Get-VBRCredential -Name "AWS-S3"
Add-VBRBackupRepository -Name "AWS-Object" -Type S3Compatible `
-Folder "veeam/prod" -Credentials $cred -EncryptionEnabled $trueProvider options:
Tip
Enable repository encryption before the first data is written (episode 15). Cloud data runs on third-party infrastructure — with encryption plus key control, you remain the secret's holder. Remember: turning on encryption after data exists does not encrypt the old data.
For VMs living in Azure, there are two official paths:
v13 expands cloud integration: Azure Blob can be a direct repository and restore points can be replicated across regions. A practical pattern: agent in an Azure VM → Azure blob → either an off-site copy for on-prem, or the only copy for workloads that are already all-in cloud.
Veeam Cloud Connect connects your VBR to a service provider licensed under VCSP (Veeam Cloud & Service Provider). Instead of building a second data center, you "rent" backup/replication capacity through a Cloud Connect Gateway — a secure outbound connection (port 6180, episode 14) without needing a site-to-site VPN:
Add-VBRServiceProvider -Name "VCSP-Nexus" `
-Address "cloud.nexus.example:6180" -Credentials $credAdd it via Backup Infrastructure → Service Providers. Once connected, two services are available:
The 3-2-1 rule (episode 7) requires one off-site copy — and the cloud is the easiest way to meet it. Two patterns:
Primary repo (on-prem) ──▶ Backup Copy Job ──▶ Cloud Repository (provider)
── or ──
SOBR performance tier ──▶ capacity tier ──▶ Cloud object storageBackups in the cloud are only half the story; DR means being able to recover in the cloud when on-prem is down:
Warning
DR to cloud is only valuable if it's tested. Don't just have a copy in the cloud — have a failover plan and a drill schedule (episode 9). Record the real time needed to recover 100 VMs from the cloud, then compare it with the RTO promised to the business.
After this episode, make sure:
Key takeaways:
In the next episode, episode 20, we will cover monitoring & reporting — Veeam ONE (alarms, AI anomaly detection), status from the VBR console, compliance reports (backup job success, retention), and alerting via email/SNMP. Your infrastructure will become measurable and observable!