Skip to content

Commit 5f123de

Browse files
authored
Merge pull request #105413 from yossi-y/patch-51
Removed the capacity reservation from the example due to customer com…
2 parents 79ed273 + 8455f41 commit 5f123de

File tree

1 file changed

+54
-47
lines changed

1 file changed

+54
-47
lines changed

articles/azure-monitor/platform/template-workspace-configuration.md

Lines changed: 54 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -73,52 +73,52 @@ For capacity reservation, you define a selected capacity reservation for ingesti
7373
}
7474
},
7575
"pricingTier": {
76-
"type": "string",
77-
"allowedValues": [
78-
"pergb2018",
79-
"Free",
80-
"Standalone",
81-
"PerNode",
82-
"Standard",
83-
"Premium"
84-
],
85-
"defaultValue": "pergb2018",
86-
"metadata": {
76+
"type": "string",
77+
"allowedValues": [
78+
"pergb2018",
79+
"Free",
80+
"Standalone",
81+
"PerNode",
82+
"Standard",
83+
"Premium"
84+
],
85+
"defaultValue": "pergb2018",
86+
"metadata": {
8787
"description": "Pricing tier: PerGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
88-
}
89-
},
90-
"location": {
91-
"type": "String",
92-
"allowedValues": [
93-
"australiacentral",
94-
"australiaeast",
95-
"australiasoutheast",
96-
"brazilsouth",
97-
"canadacentral",
98-
"centralindia",
99-
"centralus",
100-
"eastasia",
101-
"eastus",
102-
"eastus2",
103-
"francecentral",
104-
"japaneast",
105-
"koreacentral",
106-
"northcentralus",
107-
"northeurope",
108-
"southafricanorth",
109-
"southcentralus",
110-
"southeastasia",
111-
"uksouth",
112-
"ukwest",
113-
"westcentralus",
114-
"westeurope",
115-
"westus",
116-
"westus2"
117-
],
118-
"metadata": {
119-
"description": "Specifies the location in which to create the workspace."
120-
}
12188
}
89+
},
90+
"location": {
91+
"type": "String",
92+
"allowedValues": [
93+
"australiacentral",
94+
"australiaeast",
95+
"australiasoutheast",
96+
"brazilsouth",
97+
"canadacentral",
98+
"centralindia",
99+
"centralus",
100+
"eastasia",
101+
"eastus",
102+
"eastus2",
103+
"francecentral",
104+
"japaneast",
105+
"koreacentral",
106+
"northcentralus",
107+
"northeurope",
108+
"southafricanorth",
109+
"southcentralus",
110+
"southeastasia",
111+
"uksouth",
112+
"ukwest",
113+
"westcentralus",
114+
"westeurope",
115+
"westus",
116+
"westus2"
117+
],
118+
"metadata": {
119+
"description": "Specifies the location in which to create the workspace."
120+
}
121+
}
122122
},
123123
"resources": [
124124
{
@@ -127,9 +127,8 @@ For capacity reservation, you define a selected capacity reservation for ingesti
127127
"apiVersion": "2017-03-15-preview",
128128
"location": "[parameters('location')]",
129129
"properties": {
130-
"sku": {
131-
"name": "CapacityReservation",
132-
"capacityReservationLevel": 100
130+
"sku": {
131+
"name": "[parameters('pricingTier')]"
133132
},
134133
"retentionInDays": 120,
135134
"features": {
@@ -143,6 +142,14 @@ For capacity reservation, you define a selected capacity reservation for ingesti
143142
}
144143
```
145144

145+
> [Information]
146+
> for capacity reservation settings, use these properties under "sku":
147+
148+
> "name": "CapacityReservation",
149+
150+
> "capacityReservationLevel": 100
151+
152+
146153
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.
147154
3. Save this file as **deploylaworkspacetemplate.json** to a local folder.
148155
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.

0 commit comments

Comments
 (0)