-
Notifications
You must be signed in to change notification settings - Fork 4
/
ITPC-OMS-Citrix.json
109 lines (100 loc) · 2.91 KB
/
ITPC-OMS-Citrix.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema":"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion":"1.0.0.0",
"parameters":{
"location":{
"type":"string",
"allowedValues":[
"Australia Southeast",
"Australia East",
"Australia Southeast",
"Central US",
"East US",
"East US 2",
"North Central US",
"South Central US",
"West Central US",
"West US",
"West US 2",
"South Africa North",
"East Asia",
"Southeast Asia",
"UK South",
"UK West",
"Japan East",
"Southeast Asia",
"West Europe",
"North Europe",
"France Central",
"Central India",
"Korea Central",
"Switzerland North",
"Canada Central",
"China East 2"
],
"defaultValue":"West Europe"
},
"workspace":{
"type":"string",
"defaultValue":"enterAuniqueDnsHostName"
}
},
"variables":{
"OMSViews":{
"viewNames":[
"Workspace.omsview",
"Licensing.omsview",
"Citrix-Processes.omsview",
"Citrix-Sessions.omsview",
"Citrix-Site-and-Applications.omsview",
"Citrix-Workers.omsview"
]
}
},
"resources":[
{
"apiVersion": "2018-02-01",
"name": "pid-ffc08e4e-3df5-4fdd-947f-34a8ca28fe32",
"type": "Microsoft.Resources/deployments",
"properties": {
"mode": "Incremental",
"template": {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": []
}
}
},
{
"apiVersion":"2017-05-10",
"name":"[replace(variables('OMSViews').viewNames[copyIndex()], '%20', '_')]",
"type":"Microsoft.Resources/deployments",
"copy":{
"name":"viewCopy",
"count":"[length(variables('OMSViews').viewNames)]",
"mode":"Serial"
},
"properties":{
"mode":"Incremental",
"templateLink":{
"uri":"[concat('https://raw.githubusercontent.com/MarcelMeurer/LogAnalytics-for-Citrix-and-RDS/master/Views/', variables('OMSViews').viewNames[copyIndex()])]",
"contentVersion":"1.0.0.0"
},
"parameters": {
"workspace": {
"value": "[parameters('workspace')]"
},
"location": {
"value": "[parameters('location')]"
},
"resourcegroup": {
"value": "[resourceGroup().name]"
},
"subscriptionId": {
"value": "[subscription().subscriptionId]"
}
}
}
}
]
}