Skip to content

Commit 91aa443

Browse files
committed
updated article
1 parent 84305ca commit 91aa443

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

articles/automation/automation-update-management-deploy-template.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ The following parameters in the template are set with a default value for the Lo
5555
>If creating or configuring a Log Analytics workspace in a subscription that has opted into the new April 2018 pricing model, the only valid Log Analytics pricing tier is **PerGB2018**.
5656
>
5757
58+
>[!NOTE]
59+
>Before using this template, review [additional details](../azure-monitor/platform/template-workspace-configuration.md#create-a-log-analytics-workspace) related to the configuration of the property `capacityReservationLevel` for the SKU `CapacityReservation` for a Log Analytics workspace.
60+
5861
## Deploy template
5962

6063
1. Copy and paste the following JSON syntax into your file:
@@ -154,18 +157,21 @@ The following parameters in the template are set with a default value for the Lo
154157
},
155158
"resources": [
156159
{
157-
"apiVersion": "2017-03-15-preview",
158160
"type": "Microsoft.OperationalInsights/workspaces",
159-
"name": "[parameters('workspaceName')]",
160-
"location": "[parameters('location')]",
161-
"properties": {
162-
"retentionInDays": "[parameters('dataRetention')]",
163-
"features": {
164-
"immediatePurgeDataOn30Days": "[parameters('immediatePurgeDataOn30Days')]"
165-
},
166-
"sku": {
167-
"name": "[parameters('pricingTier')]"
168-
}
161+
"name": "[parameters('workspaceName')]",
162+
"apiVersion": "2017-03-15-preview",
163+
"location": "[parameters('location')]",
164+
"properties": {
165+
"sku": {
166+
"name": "CapacityReservation",
167+
"capacityReservationLevel": 100
168+
},
169+
"retentionInDays": "[parameters('dataRetention')]",
170+
"features": {
171+
"searchVersion": 1,
172+
"legacy": 0,
173+
"enableLogAccessUsingOnlyResourcePermissions": true
174+
}
169175
},
170176
"resources": [
171177
{

0 commit comments

Comments
 (0)