Global Data Durability: Implementing Amazon S3 Cross-Region Replication

Search for a command to run...

No comments yet. Be the first to comment.
Introduction Data encryption is a critical component of cloud security, especially when dealing with sensitive workloads in regulated environments. Amazon S3 provides multiple encryption mechanisms that cater to different compliance and operational n...

Introduction In modern cloud architectures, backups are not just a compliance checkbox, they are a critical component of resilience and disaster recovery strategies. AWS Backup provides a centralised service to automate backups across AWS services su...
Introduction Hybrid and multicloud strategies are now the norm for enterprises seeking agility, resilience, and compliance. Yet, managing infrastructure that spans AWS, on-premises data centres, and even other public clouds introduces operational com...

As organizations scale their cloud footprint, managing AWS accounts with consistent governance, security, and customization becomes increasingly complex. AWS Control Tower Account Factory for Terraform (AFT) bridges this gap by combining the governan...

Amazon S3 is a highly durable, scalable object storage service that provides 99.999999999% durability by storing data across multiple Availability Zones. However, certain compliance, latency, and disaster recovery requirements demand storing data across different AWS Regions. This is where Cross-Region Replication (CRR) comes in.
CRR enables automatic, asynchronous replication of objects from one S3 bucket to another in a different AWS Region. It ensures business continuity, improves performance for global users, and helps meet regulatory requirements.
According to AWS best practices and industry use cases:
Compliance: Some regulations require data copies in geographically distant regions.
Disaster Recovery: Replicating data across regions mitigates risks from regional outages.
Latency Optimization: Serve global customers faster by storing data closer to them.
Ownership Override: CRR allows changing object ownership in the destination bucket for access control.
CRR uses live replication for new objects and S3 Batch Replication for existing objects. Key requirements:
Both buckets must have versioning enabled.
An IAM role must grant permissions for replication.
Objects uploaded before enabling replication are not automatically replicated.
Same-Region Replication (SRR): For compliance within a region.
Cross-Region Replication (CRR): For multi-region backups and disaster recovery.
Advanced Option: Enable Replication Time Control (RTC) for predictable replication within 15 minutes (additional cost).
Create source bucket in primary region.
Enable versioning via Properties → Bucket Versioning.
Create destination bucket in secondary region with versioning enabled.





Navigate to Management → Replication rules → Create replication rule.
Scope: Entire bucket or filtered by prefix/tags.
Destination: Select destination bucket.
IAM Role: Assign or create a role with permissions:




IAM Replication Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetReplicationConfiguration",
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::source-br"
]
},
{
"Effect": "Allow",
"Action": [
"s3:GetObjectVersionForReplication",
"s3:GetObjectVersionAcl",
"s3:GetObjectVersionTagging"
],
"Resource": [
"arn:aws:s3:::source-br/*"
]
},
{
"Effect": "Allow",
"Action": [
"s3:ReplicateObject",
"s3:ReplicateDelete",
"s3:ReplicateTags"
],
"Resource": "arn:aws:s3:::target-br/*"
}
]
}
There is an advance option for S3 objects to be replicated within 15 minutes, you’ll need to tick the “Replication Time Control (RTC)” box. Please note that this feature incurs additional charges.



Upload a new file to the source bucket.
Verify replication in the destination bucket.
Note: Existing objects require S3 Batch Replication.


Now validate if the uploaded files are replicated to our target bucket.

By default, KMS-encrypted objects are not replicated.
Edit replication rule → Enable Replicate objects encrypted with AWS KMS.
Specify destination KMS key.


Create rule with Tag filter (e.g., Key=replicate, Value=yes).
Only tagged objects replicate.
By default, deletions are not replicated.
Enable Delete marker replication if required.
Cost: Replication incurs storage and request charges in both regions.
Monitoring: Use Amazon S3 Replication metrics, CloudWatch, and EventBridge for alerts.
Multi-Region Access Points: Combine CRR with Multi-Region Access Points for global applications.
Security: Apply least-privilege IAM roles and enable encryption for compliance.
Amazon S3 CRR is a powerful feature for compliance, disaster recovery, and performance optimization. By leveraging versioning, replication rules, and advanced filters, you can design robust multi-region backup strategies.