You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/automation/automation-update-management-deploy-template.md
+83-81Lines changed: 83 additions & 81 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.subservice: update-management
6
6
ms.topic: conceptual
7
7
author: mgoedtel
8
8
ms.author: magoedte
9
-
ms.date: 02/27/2020
9
+
ms.date: 03/30/2020
10
10
11
11
---
12
12
@@ -52,6 +52,7 @@ The following parameters in the template are set with a default value for the Lo
52
52
53
53
* sku - defaults to the new Per-GB pricing tier released in the April 2018 pricing model
54
54
* data retention - defaults to thirty days
55
+
* capacity reservation - defaults to 100 GB
55
56
56
57
>[!WARNING]
57
58
>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**.
@@ -67,89 +68,89 @@ The following parameters in the template are set with a default value for the Lo
"description": "Pricing tier: perGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
91
-
}
92
-
},
93
-
"dataRetention": {
94
-
"type": "int",
95
-
"defaultValue": 30,
96
-
"minValue": 7,
97
-
"maxValue": 730,
98
-
"metadata": {
99
-
"description": "Number of days of retention. Workspaces in the legacy Free pricing tier can only have 7 days."
100
-
}
101
-
},
102
-
"immediatePurgeDataOn30Days": {
103
-
"type": "bool",
104
-
"defaultValue": "[bool('false')]",
105
-
"metadata": {
106
-
"description": "If set to true when changing retention to 30 days, older data will be immediately deleted. Use this with extreme caution. This only applies when retention is being set to 30 days."
107
-
}
108
-
},
109
-
"location": {
110
-
"type": "string",
111
-
"allowedValues": [
112
-
"australiacentral",
113
-
"australiaeast",
114
-
"australiasoutheast",
115
-
"brazilsouth",
116
-
"canadacentral",
117
-
"centralindia",
118
-
"centralus",
119
-
"eastasia",
120
-
"eastus",
121
-
"eastus2",
122
-
"francecentral",
123
-
"japaneast",
124
-
"koreacentral",
125
-
"northcentralus",
126
-
"northeurope",
127
-
"southafricanorth",
128
-
"southcentralus",
129
-
"southeastasia",
130
-
"uksouth",
131
-
"ukwest",
132
-
"westcentralus",
133
-
"westeurope",
134
-
"westus",
135
-
"westus2"
136
-
],
137
-
"metadata": {
138
-
"description": "Specifies the location in which to create the workspace."
139
-
}
140
-
},
71
+
"contentVersion": "1.0.0.0",
72
+
"parameters": {
73
+
"workspaceName": {
74
+
"type": "string",
75
+
"metadata": {
76
+
"description": "Workspace name"
77
+
}
78
+
},
79
+
"sku": {
80
+
"type": "string",
81
+
"allowedValues": [
82
+
"pergb2018",
83
+
"Free",
84
+
"Standalone",
85
+
"PerNode",
86
+
"Standard",
87
+
"Premium"
88
+
],
89
+
"defaultValue": "pergb2018",
90
+
"metadata": {
91
+
"description": "Pricing tier: perGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
92
+
}
93
+
},
94
+
"dataRetention": {
95
+
"type": "int",
96
+
"defaultValue": 30,
97
+
"minValue": 7,
98
+
"maxValue": 730,
99
+
"metadata": {
100
+
"description": "Number of days of retention. Workspaces in the legacy Free pricing tier can only have 7 days."
101
+
}
102
+
},
103
+
"immediatePurgeDataOn30Days": {
104
+
"type": "bool",
105
+
"defaultValue": "[bool('false')]",
106
+
"metadata": {
107
+
"description": "If set to true when changing retention to 30 days, older data will be immediately deleted. Use this with extreme caution. This only applies when retention is being set to 30 days."
108
+
}
109
+
},
110
+
"location": {
111
+
"type": "string",
112
+
"allowedValues": [
113
+
"australiacentral",
114
+
"australiaeast",
115
+
"australiasoutheast",
116
+
"brazilsouth",
117
+
"canadacentral",
118
+
"centralindia",
119
+
"centralus",
120
+
"eastasia",
121
+
"eastus",
122
+
"eastus2",
123
+
"francecentral",
124
+
"japaneast",
125
+
"koreacentral",
126
+
"northcentralus",
127
+
"northeurope",
128
+
"southafricanorth",
129
+
"southcentralus",
130
+
"southeastasia",
131
+
"uksouth",
132
+
"ukwest",
133
+
"westcentralus",
134
+
"westeurope",
135
+
"westus",
136
+
"westus2"
137
+
],
138
+
"metadata": {
139
+
"description": "Specifies the location in which to create the workspace."
140
+
}
141
+
},
141
142
"automationAccountName": {
142
143
"type": "string",
143
144
"metadata": {
144
145
"description": "Automation account name"
145
146
}
146
147
},
147
-
"automationAccountLocation": {
148
-
"type": "string",
149
-
"metadata": {
150
-
"description": "Specify the location in which to create the Automation account."
151
-
}
152
-
}
148
+
"automationAccountLocation": {
149
+
"type": "string",
150
+
"metadata": {
151
+
"description": "Specify the location in which to create the Automation account."
152
+
}
153
+
}
153
154
},
154
155
"variables": {
155
156
"Updates": {
@@ -164,7 +165,8 @@ The following parameters in the template are set with a default value for the Lo
164
165
"apiVersion": "2017-03-15-preview",
165
166
"location": "[parameters('location')]",
166
167
"properties": {
167
-
"sku": {
168
+
"sku": {
169
+
"Name": "[parameters('sku')]",
168
170
"name": "CapacityReservation",
169
171
"capacityReservationLevel": 100
170
172
},
@@ -209,7 +211,7 @@ The following parameters in the template are set with a default value for the Lo
@@ -227,7 +229,7 @@ The following parameters in the template are set with a default value for the Lo
227
229
}
228
230
```
229
231
230
-
2. Edit the template to meet your requirements.
232
+
2. Edit the template to meet your requirements. Consider creating a [Resource Manager parameters file](../azure-resource-manager/templates/parameter-files.md) instead of passing parameters as inline values.
231
233
232
234
3. Save this file as deployUMSolutiontemplate.json to a local folder.
Copy file name to clipboardExpand all lines: articles/azure-monitor/platform/template-workspace-configuration.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ For capacity reservation, you define a selected capacity reservation for ingesti
71
71
"description": "Specifies the name of the workspace."
72
72
}
73
73
},
74
-
"pricingTier": {
74
+
"sku": {
75
75
"type": "string",
76
76
"allowedValues": [
77
77
"pergb2018",
@@ -127,7 +127,7 @@ For capacity reservation, you define a selected capacity reservation for ingesti
127
127
"location": "[parameters('location')]",
128
128
"properties": {
129
129
"sku": {
130
-
"name": "[parameters('pricingTier')]"
130
+
"name": "[parameters('sku')]"
131
131
},
132
132
"retentionInDays": 120,
133
133
"features": {
@@ -141,16 +141,15 @@ For capacity reservation, you define a selected capacity reservation for ingesti
141
141
}
142
142
```
143
143
144
-
> [Information]
145
-
> for capacity reservation settings, use these properties under "sku":
144
+
>[!NOTE]
145
+
>For capacity reservation settings, use these properties under "sku":
146
+
>* "name": "CapacityReservation",
147
+
>* "capacityReservationLevel": 100
146
148
147
-
> "name": "CapacityReservation",
149
+
2. Edit the template to meet your requirements. Consider creating a [Resource Manager parameters file](../../azure-resource-manager/templates/parameter-files.md) instead of passing parameters as inline values. Review [Microsoft.OperationalInsights/workspaces template](https://docs.microsoft.com/azure/templates/microsoft.operationalinsights/workspaces) reference to learn what properties and values are supported.
148
150
149
-
> "capacityReservationLevel": 100
150
-
151
-
152
-
2. Edit the template to meet your requirements. Review [Microsoft.OperationalInsights/workspaces template](https://docs.microsoft.com/azure/templates/microsoft.operationalinsights/workspaces) reference to learn what properties and values are supported.
153
151
3. Save this file as **deploylaworkspacetemplate.json** to a local folder.
152
+
154
153
4. You are ready to deploy this template. You use either PowerShell or the command line to create the workspace, specifying the workspace name and location as part of the command. The workspace name must be globally unique across all Azure subscriptions.
155
154
156
155
* For PowerShell use the following commands from the folder containing the template:
@@ -173,7 +172,7 @@ The deployment can take a few minutes to complete. When it finishes, you see a m
173
172
The following template sample illustrates how to:
174
173
175
174
1. Add solutions to the workspace
176
-
2. Create saved searches. To ensure that deployments don't override saved searches accidently, an eTag property should be added in the "savedSearches" resource to override and maintain the idempotency of saved searches.
175
+
2. Create saved searches. To ensure that deployments don't override saved searches accidentally, an eTag property should be added in the "savedSearches" resource to override and maintain the idempotency of saved searches.
177
176
3. Create a computer group
178
177
4. Enable collection of IIS logs from computers with the Windows agent installed
179
178
5. Collect Logical Disk perf counters from Linux computers (% Used Inodes; Free Megabytes; % Used Space; Disk Transfers/sec; Disk Reads/sec; Disk Writes/sec)
@@ -194,7 +193,7 @@ The following template sample illustrates how to:
194
193
"description": "Workspace name"
195
194
}
196
195
},
197
-
"pricingTier": {
196
+
"sku": {
198
197
"type": "string",
199
198
"allowedValues": [
200
199
"PerGB2018",
@@ -274,7 +273,7 @@ The following template sample illustrates how to:
274
273
"metadata": {
275
274
"description": "The custom log name"
276
275
}
277
-
}
276
+
}
278
277
},
279
278
"variables": {
280
279
"Updates": {
@@ -303,7 +302,7 @@ The following template sample illustrates how to:
0 commit comments