forked from microsoft/azure_arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogAnalytics.json
46 lines (46 loc) · 1.14 KB
/
logAnalytics.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
46
{
"$schema": "https://schema.management.azure.com/schemas/2019-08-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"workspaceName": {
"type": "string",
"metadata": {
"description": "Name for your log analytics workspace"
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Azure Region to deploy the Log Analytics Workspace"
}
},
"sku": {
"type": "string",
"defaultValue": "pergb2018",
"metadata": {
"description": "SKU, leave default pergb2018"
}
},
"tags": {
"type": "object",
"defaultValue": {
"Project": "jumpstart_azure_arc_data_services"
}
}
},
"resources": [
{
"type": "Microsoft.OperationalInsights/workspaces",
"apiVersion": "2020-03-01-preview",
"name": "[parameters('workspaceName')]",
"location": "[parameters('location')]",
"tags": "[parameters('tags')]",
"properties": {
"sku": {
"name": "[parameters('sku')]"
}
}
}
]
}