Skip to content

Commit e81b683

Browse files
committed
tweaks
1 parent 3f41f5f commit e81b683

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

articles/storage/blobs/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
href: storage-blob-change-feed-how-to.md
402402
- name: Enable point-in-time restore
403403
href: point-in-time-restore-manage.md
404-
- name: Configure object replication for block blobs
404+
- name: Configure object replication
405405
href: object-replication-configure.md
406406
- name: Manage disaster recovery
407407
items:

articles/storage/blobs/object-replication-configure.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: tamram
1212
ms.subservice: blobs
1313
---
1414

15-
# Configure object replication (preview)
15+
# Configure object replication for block blobs (preview)
1616

1717
Object replication (preview) asynchronously copies block blobs between a source storage account and a destination account. For more information about object replication, see [Object replication (preview)](object-replication-overview.md).
1818

@@ -158,7 +158,7 @@ To create a replication policy with Azure CLI, first install version ??? of the
158158
Run the following command to install the Azure Storage preview module for Azure CLI:
159159

160160
```azurecli
161-
az extension add -n storage-ors-preview
161+
az extension add -n storage-or-preview
162162
```
163163

164164
Next, sign in with your Azure credentials:
@@ -167,7 +167,7 @@ Next, sign in with your Azure credentials:
167167
az login
168168
```
169169

170-
Enable blob versioning on the source and destination storage accounts, and enable change feed on the source account. Make sure that you have already registered for the [change feed](https://azure.microsoft.com/blog/change-feed-support-now-available-in-preview-for-azure-blob-storage/) and Versioning capabilities.
170+
Enable blob versioning on the source and destination storage accounts, and enable change feed on the source account. Remember to replace values in angle brackets with your own values:
171171

172172
```azurecli
173173
az storage blob service-properties update --resource-group <resource-group> \
@@ -244,8 +244,12 @@ To remove a replication policy in the Azure portal, follow these steps:
244244
To remove a replication policy, delete the policy from both the source account and the destination account. Deleting the policy also deletes any rules associated with it.
245245

246246
```powershell
247-
Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $destAccountName | Remove-AzStorageObjectReplicationPolicy
248-
Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $srcAccountName | Remove-AzStorageObjectReplicationPolicy
247+
Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname `
248+
-StorageAccountName $destAccountName |
249+
Remove-AzStorageObjectReplicationPolicy
250+
Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname `
251+
-StorageAccountName $srcAccountName |
252+
Remove-AzStorageObjectReplicationPolicy
249253
```
250254

251255
# [Azure CLI](#tab/azure-cli)

articles/storage/blobs/object-replication-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: tamram
1212
ms.subservice: blobs
1313
---
1414

15-
# Object replication (preview)
15+
# Object replication for block blobs (preview)
1616

1717
Object replication (preview) asynchronously copies block blobs between a source storage account and a destination account. Some scenarios supported by object replication include:
1818

@@ -36,7 +36,7 @@ After you configure object replication, Azure Storage checks the change feed for
3636

3737
When you configure object replication, a replication policy is created on both the source account and the destination account via the Azure Storage resource provider. The replication policy is identified by a policy ID. The policy on the source and destination accounts must have the same policy ID in order for replication to take place.
3838

39-
A storage account can serve as the source account for up to two destination accounts. The source and destination accounts may all be in different regions. You can configure two separate replication policies to replicate data to each of the destination accounts.
39+
A storage account can serve as the source account for up to two destination accounts. The source and destination accounts may all be in different regions. You can configure separate replication policies to replicate data to each of the destination accounts.
4040

4141
### Replication rules
4242

0 commit comments

Comments
 (0)