-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-jbox.json
138 lines (138 loc) · 4.57 KB
/
template-jbox.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
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"metadata": {
"description": "The Location for the resources"
},
"defaultValue": "[resourceGroup().location]"
},
"existingVnetName": {
"type": "string",
"metadata": {
"description": "vName of the existing virtual network."
}
},
"existingSubnetName": {
"type": "string",
"metadata": {
"description": "Name of the existing subnet."
}
},
"vmSku": {
"type": "string",
"defaultValue": "Standard_A1",
"metadata": {
"description": "Size of the rdp jumpbox VM."
}
},
"windowsOsVersion": {
"type": "string",
"defaultValue": "2016-Datacenter",
"metadata": {
"description": "The Windows version for the rdp jumpbox VM."
}
},
"adminUsername": {
"type": "string",
"defaultValue": "rdpusername",
"metadata": {
"description": "Admin username on rdp jumpbox VM."
}
},
"adminPassword": {
"type": "securestring",
"metadata": {
"description": "Admin password on rdp jumpbox VM."
}
}
},
"variables": {
"vmName": "rdp-vm",
"namingInfix":"[concat('rdp', 'itrs')]",
"networkInterfaceName": "[concat(variables('vmName'), '-nic')]",
"networkInterfaceResourceId": "[resourceId('Microsoft.Network/networkInterfaces', variables('networkInterfaceName'))]",
"networkInterfaceIpConfigurationsName": "[concat(variables('vmName'), '-ipconfig')]",
"subnetResourceId": "[resourceId(resourceGroup().name, 'Microsoft.Network/virtualNetworks/subnets', parameters('existingVnetName'), parameters('existingSubNetName'))]",
"publicIPAddressName": "[concat(variables('namingInfix'), '-pip')]",
"publicIPAddressID": "[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]",
"vmImageReference": {
"publisher": "MicrosoftWindowsServer",
"offer": "WindowsServer",
"sku": "[parameters('windowsOsVersion')]",
"version": "latest"
}
},
"resources": [
{
"name": "[variables('networkInterfaceName')]",
"type": "Microsoft.Network/networkInterfaces",
"location": "[parameters('location')]",
"apiVersion": "2017-10-01",
"dependsOn": [ "[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]"],
"properties": {
"ipConfigurations": [
{
"name": "[variables('networkInterfaceIpConfigurationsName')]",
"properties": {
"privateIPAllocationMethod": "Dynamic",
"publicIPAddress": {
"id": "[variables('publicIPAddressID')]"
},
"subnet": {
"id": "[variables('subnetResourceId')]"
}
}
}
]
}
},
{
"type": "Microsoft.Network/publicIPAddresses",
"name": "[variables('publicIPAddressName')]",
"location": "[resourceGroup().location]",
"apiVersion": "2016-03-30",
"properties": {
"publicIPAllocationMethod": "Dynamic",
"dnsSettings": {
"domainNameLabel": "[variables('namingInfix')]"
}
}
},
{
"name": "[variables('vmName')]",
"type": "Microsoft.Compute/virtualMachines",
"location": "[parameters('location')]",
"apiVersion": "2017-03-30",
"dependsOn": [
"[concat('Microsoft.Network/networkInterfaces/', variables('networkInterfaceName'))]"
],
"properties": {
"hardwareProfile": {
"vmSize": "[parameters('vmSku')]"
},
"osProfile": {
"computerName": "[variables('vmName')]",
"adminUsername": "[parameters('adminUsername')]",
"adminPassword": "[parameters('adminPassword')]"
},
"storageProfile": {
"imageReference": "[variables('vmImageReference')]",
"osDisk": {
"caching": "ReadWrite",
"createOption": "FromImage"
}
},
"networkProfile": {
"networkInterfaces": [
{
"id": "[variables('networkInterfaceResourceId')]"
}
]
}
}
}
]
}