-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCreatingVDIGallery.json
296 lines (295 loc) · 8.34 KB
/
CreatingVDIGallery.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vhdStorageAccount": {
"type": "string",
"metadata": {
"description": "Storage account to place VHD in."
}
},
"publisher": {
"type": "string",
"defaultValue": "MicrosoftWindowsServer",
"metadata": {
"description": "Windows OS version for the VM, allowed values: 2008-R2-SP1, 2012-Datacenter, 2012-R2-Datacenter."
}
},
"offer": {
"type": "string",
"defaultValue": "Windows-HUB",
"metadata": {
"description": "Windows OS version for the VM, allowed values: 2008-R2-SP1, 2012-Datacenter, 2012-R2-Datacenter."
}
},
"sku": {
"type": "string",
"defaultValue": "Windows-10-HUB",
"metadata": {
"description": "Windows OS version for the VM, allowed values: 2008-R2-SP1, 2012-Datacenter, 2012-R2-Datacenter."
}
},
"machineSize": {
"type": "string",
"defaultValue": "Standard_A2",
"metadata": {
"description": "The size of the virtual machines"
}
},
"location": {
"type": "string",
"defaultValue": "[resourcegroup().location]",
"metadata": {
"description": "Specifies the Location for the deployment."
}
},
"machineName": {
"type": "string",
"metadata": {
"description": "Name of the machine to which will be created."
}
},
"availabilitySetId": {
"type": "string",
"metadata": {
"description": "Availability set this machine belongs to"
}
},
"subnetId": {
"type": "string",
"metadata": {
"description": "Id of the subnet the machine shall connect to."
}
},
"privateIp": {
"type": "string",
"metadata": {
"description": "Specifies the private IP on the subnet the machine should connect to."
}
},
"dnsServers": {
"type": "array",
"metadata": {
"description": "Specifies a list of DNS servers the machine should use."
}
},
"lbBapId": {
"type": "string",
"metadata": {
"description": "Load balancer address pool."
}
},
"lbInboundRules": {
"type": "array",
"metadata": {
"description": "Inbound rule for this VM."
}
},
"adminUsername": {
"type": "string",
"metadata": {
"description": "The name of the administrator of the new VM and the domain. Exclusion list: 'admin','administrator"
}
},
"adminPassword": {
"type": "securestring",
"metadata": {
"description": "The password for the administrator account of the new VM and the domain"
}
},
"artifactsLocationUri": {
"type": "string",
"metadata": {
"description": "Location of scripts and other related assets"
}
},
"artifactsLocationSasToken": {
"type": "string",
"metadata": {
"description": "Token allowing for access of asset location"
}
},
"configurationFileUrl": {
"type": "string",
"metadata": {
"description": "Specifies the URI of the DSC configuration script."
}
},
"configurationFunction": {
"type": "string",
"metadata": {
"description": "Specifies the function to be executed in the DSC configuration script."
}
},
"dscVersion": {
"type": "string",
"metadata": {
"description": "Version of DSC Virtual Machine Extension to use."
}
},
"domainName": {
"type": "string",
"metadata": {
"description": "Specifies the name of the Active Directory domain."
}
},
"domainControllerIp": {
"type": "string",
"metadata": {
"description": "Specifies the IP of a domain controller on the virtual network."
}
},
"domainControllerFQDN": {
"type": "string",
"metadata": {
"description": "Specifies the FQDN of a domain controller on the virtual network."
}
},
"deliveryControllerFQDN": {
"type": "string",
"metadata": {
"description": "Specifies the name of the XenApp delivery controller on the virtual network."
}
},
"deploymentFQDN": {
"type": "string",
"metadata": {
"description": "Specifies the FQDN of the Azure public IP to which the gateway FQDN will be forwarded."
}
},
"gatewayFQDN": {
"type": "string",
"metadata": {
"description": "Specifies the FQDN where the user will reach the deployment."
}
},
"azureGov": {
"type": "string",
"metadata": {
"description": "Specifies the shared access signature token which provides access to the base artifacts location."
},
"defaultValue": "true",
"allowedValues": [
"true",
"false"
]
}
},
"variables": {
"nicName": "[concat(parameters('machineName'),'-Nic')]",
"nicId": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]",
"machineId": "[resourceId('Microsoft.Compute/virtualMachines',parameters('machineName'))]",
"osDiskName": "[concat(resourceGroup().name,'-',parameters('machineName'),'-osdisk')]",
"osDisk": {
"true": {
"osDiskUri": "[concat('http://',parameters('vhdStorageAccount'),'.blob.core.usgovcloudapi.net/vhds/',variables('osDiskName'),'.vhd')]"
},
"false": {
"osDiskUri": "[concat('http://',parameters('vhdStorageAccount'),'.blob.core.windows.net/vhds/',variables('osDiskName'),'.vhd')]"
}
},
"currentOsDisk": "[variables('osDisk')[parameters('azureGov')]]",
"osDiskUri": "[variables('currentOsDisk').osDiskUri]"
},
"resources": [
{
"apiVersion": "2016-09-01",
"type": "Microsoft.Network/networkInterfaces",
"name": "[variables('nicName')]",
"tags": {
"displayName": "VDINic"
},
"location": "[parameters('location')]",
"properties": {
"ipConfigurations": [
{
"name": "ipconfig",
"properties": {
"privateIPAllocationMethod": "Static",
"privateIPAddress": "[parameters('privateIp')]",
"subnet": {
"id": "[parameters('subnetId')]"
},
"loadBalancerBackendAddressPools": [
{
"id": "[parameters('lbBapId')]"
}
],
"loadBalancerInboundNatRules": "[parameters('lbInboundRules')]"
}
}
]
}
},
{
"apiVersion": "2015-06-15",
"type": "Microsoft.Compute/virtualMachines",
"name": "[parameters('machineName')]",
"tags": {
"displayName": "VDI"
},
"location": "[parameters('location')]",
"dependsOn": [
"[variables('nicId')]"
],
"properties": {
"availabilitySet": {
"id": "[parameters('availabilitySetId')]"
},
"hardwareProfile": {
"vmSize": "[parameters('machineSize')]"
},
"osProfile": {
"computerName": "[parameters('machineName')]",
"adminUsername": "[parameters('adminUsername')]",
"adminPassword": "[parameters('adminPassword')]",
},
"storageProfile": {
"imageReference": {
"publisher": "[parameters('publisher')]",
"offer": "[parameters('offer')]",
"sku": "[parameters('sku')]",
"version": "latest"
},
"osDisk": {
"name": "[variables('osDiskName')]",
"vhd": {
"uri": "[variables('osDiskUri')]"
},
"caching": "ReadWrite",
"createOption": "FromImage"
}
},
"networkProfile": {
"networkInterfaces": [
{
"id": "[variables('nicId')]"
}
]
}
}
}
],
"outputs": {
"machineId": {
"type": "string",
"value": "[variables('machineId')]"
},
"nicId": {
"type": "string",
"value": "[variables('nicId')]"
},
"machineName":{
"type": "string",
"value": "[variables('machineName')]"
},
"osDisk":{
"type": "string",
"value": "[variables('osDiskName')]"
},
"vhd":{
"type": "string",
"value": "[variables('osDiskUri')]"
}
}
}