-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeploy-01.json
45 lines (41 loc) · 1.06 KB
/
deploy-01.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"DeploymentID": {
"type": "string"
},
"sku": {
"type": "string",
"allowedValues": [
"pergb2018",
"Free",
"Standalone",
"PerNode",
"Standard",
"Premium"
],
"defaultValue": "pergb2018",
"metadata": {
"description": "Pricing tier: PerGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
}
}
},
"variables": {
"location": "[resourceGroup().location]",
"logname": "[concat('loganalytics-',parameters('DeploymentID'))]"
},
"resources": [
{
"type": "Microsoft.OperationalInsights/workspaces",
"apiVersion": "2017-03-15-preview",
"name": "[variables('logname')]",
"location": "[variables('location')]",
"properties": {
"sku": {
"name": "[parameters('sku')]"
}
}
}
]
}