Skip to content

Commit 2616f7c

Browse files
authored
Merge pull request #112112 from yossi-y/patch-75
Updated per APIs changes.
2 parents 2149439 + 6a20726 commit 2616f7c

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

articles/azure-monitor/platform/customer-managed-keys.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ details.
306306

307307
**Update**
308308

309-
This Resource Manager request is asynchronous operation.
309+
This Resource Manager request is asynchronous operation when updating Key identifier details, while it is synchronous when updating Capacity value.
310310

311311
> [!Warning]
312312
> You must provide a full body in *Cluster* resource update that includes *identity*, *sku*, *KeyVaultProperties* and *location*. Missing the *KeyVaultProperties* details will remove the key identifier from the *Cluster* resource and cause [key revocation](#cmk-kek-revocation).
@@ -339,7 +339,7 @@ Content-type: application/json
339339
**Response**
340340

341341
200 OK and header.
342-
It takes the propagation of the Key identifier a few minutes to complete. You can check the provisioning state in two ways:
342+
It takes the propagation of the Key identifier a few minutes to complete. You can check the update state in two ways:
343343
1. Copy the Azure-AsyncOperation URL value from the response and follow the [asynchronous operations status check](#asynchronous-operations-and-status-check).
344344
2. Send a GET request on the *Cluster* resource and look at the *KeyVaultProperties* properties. Your recently updated Key identifier details should return in the response.
345345

@@ -464,20 +464,16 @@ All your data is accessible after the key rotation operation including data inge
464464

465465
- The max number of *Cluster* resources per subscription is limited to 2
466466

467-
- *Cluster* resource association to workspace should be carried ONLY after you have verified that the ADX cluster provisioning was fulfilled. Data that is sent prior to this provisioning will be dropped and won't be recoverable.
467+
- *Cluster* resource association to workspace should be carried ONLY after you have verified that the ADX cluster provisioning was completed. Data sent to your workspace prior to the completion of the provisioning will be dropped and won't be recoverable.
468468

469469
- CMK encryption applies to newly ingested data after the CMK
470470
configuration. Data that was ingested prior to the CMK
471471
configuration, remains encrypted with Microsoft key. You can query
472472
data ingested before and after the CMK configuration seamlessly.
473473

474-
- Once workspace is associated to a *Cluster* resource, it cannot be
475-
de-associated from the *Cluster* resource, since data is encrypted
476-
with your key and isn't accessible without your KEK in Azure Key
477-
Vault.
474+
- You can de-associate a workspace from a *Cluster* resource when deciding that CMK isn’t required for particular workspace. New ingested data after the de-association operation is stored in shared Log Analytics storage as it was before it was associated to the *Cluster* resource. You can query data ingested before and after the de-association seamlessly if your *Cluster* resource is provisioned and configured with valid Key Vault key.
478475

479-
- The Azure Key Vault must be configured as recoverable. These
480-
properties aren't enabled by default and should be configured using CLI and PowerShell:
476+
- The Azure Key Vault must be configured as recoverable. These properties aren't enabled by default and should be configured using CLI or PowerShell:
481477

482478
- [Soft Delete](https://docs.microsoft.com/azure/key-vault/key-vault-ovw-soft-delete)
483479
must be turned on
@@ -509,6 +505,8 @@ All your data is accessible after the key rotation operation including data inge
509505

510506
- If you try to delete a *Cluster* resource that is associated to a workspace, the delete operation will fail.
511507

508+
- If you get conflict error when creating a *Cluster* resource – It may be that you have deleted your *Cluster* resource in the last 14 days and it’s in a soft-delete period. The *Cluster* resource name remains reserved during the soft-delete period and you can't create a new cluster with that name. The name is released after the soft-delete period when the *Cluster* resource is permanently deleted.
509+
512510
- Get all *Cluster* resources for a resource group:
513511

514512
```rst
@@ -527,6 +525,11 @@ All your data is accessible after the key rotation operation including data inge
527525
"tenantId": "tenant-id",
528526
"principalId": "principal-Id"
529527
},
528+
"sku": {
529+
"name": "capacityReservation",
530+
"capacity": 1000,
531+
"lastSkuUpdate": "Sun, 22 Mar 2020 15:39:29 GMT"
532+
},
530533
"properties": {
531534
"KeyVaultProperties": {
532535
KeyVaultUri: "https://key-vault-name.vault.azure.net",
@@ -556,9 +559,10 @@ All your data is accessible after the key rotation operation including data inge
556559
**Response**
557560

558561
The same response as for '*Cluster* resources for a resource group', but in subscription scope.
559-
560-
- Delete your *Cluster* resource -- a soft-delete operation is performed to allow the recovery of your Cluster resource, your data and associated workspaces within 14 days, whether the deletion was accidental or intentional. The *Cluster* resource name remains reserved during the soft-delete period and you can't create a new cluster with that name.
561-
After the soft-delete period, your *Cluster* resource and data are non-recoverable. Associated workspaces are de-associated from the *Cluster* resource and new data is ingested to shared Storage and encrypted with Microsoft key.
562+
563+
- Update *capacity reservation* in *Cluster* resource -- when the data volume to your associated workspaces change and you want to update the capacity reservation level for billing considerations, follow the [update *Cluster* resource](#update-cluster-resource-with-key-identifier-details) and provide your new capacity value. The capacity reservation level can be in the range of 1,000 to 2,000 GB per day and in steps of 100. For level higher than 2,000 GB per day, reach your Microsoft contact to enable it.
564+
565+
- Delete your *Cluster* resource -- a soft-delete operation is performed to allow the recovery of your *Cluster* resource including its data within 14 days, whether the deletion was accidental or intentional. The *Cluster* resource name remains reserved during the soft-delete period and you can't create a new cluster with that name. After the soft-delete period, The *Cluster* resource name is released, your *Cluster* resource and data are permanently deleted and are non-recoverable. Any associated workspace gets de-associated from the *Cluster* resource on delete operation. New ingested data is stored in shared Log Analytics storage and encrypted with Microsoft key. The workspaces de-associated operation is asynchronous.
562566

563567
```rst
564568
DELETE https://management.azure.com/subscriptions/<subscription-id>/resourceGroups/<resource-group-name>/providers/Microsoft.OperationalInsights/clusters/<cluster-name>?api-version=2020-03-01-preview
@@ -569,8 +573,7 @@ After the soft-delete period, your *Cluster* resource and data are non-recoverab
569573

570574
200 OK
571575

572-
- Recover your *Cluster* resource and your data -- during the soft-delete period, create a *Cluster* resource with the same name and in the same subscription, resource group and region. Follow the **Create *Cluster* resource** step to recover your *Cluster* resource.
573-
576+
- Recover your *Cluster* resource and your data -- during the soft-delete period, create a *Cluster* resource with the same name and in the same subscription, resource group and region. Follow the [Create Cluster resource](#create-cluster-resource) step to recover your *Cluster* resource. Previously associated workspaces were de-associated from the *Cluster* resource at delete time and you need to [associate your workspaces](#workspace-association-to-cluster-resource) after the recovery.
574577

575578
## Appendix
576579

0 commit comments

Comments
 (0)