-
Notifications
You must be signed in to change notification settings - Fork 1
/
azuredeploy.parameters.subnets2.json
110 lines (107 loc) · 3.7 KB
/
azuredeploy.parameters.subnets2.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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"_artifactsLocation": {
"value": "https://raw.githubusercontent.com/QlikIT/Moodle/byoSubnetsSingle/"
},
"sshPublicKey": {
"value": "ssh-rsa xxxxxxxx== rsa-key-20201007"
},
"moodleVersion": {
"value": "MOODLE_39_STABLE"
},
"httpsTermination": {
"value": "AppGw"
},
"siteURL": {
"value": "jay-poc.xxx.com"
},
"fileServerType": {
"value": "nfs-byo"
},
"nfsByoIpExportPath": {
"value": "xxx.20.9.132:/moodletest2"
},
"htmlLocalCopySwitch": {
"value": false
},
"osDiskStorageType": {
"value": "Standard_LRS"
},
"appGwSslCertKeyVaultResourceId": {
"value": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/resourceGroups/IT-Infra-Mgmt-DevTest/providers/Microsoft.KeyVault/vaults/qlikdevtestkeyvault"
},
"appGwSslCertKeyVaultSecretName": {
"value": "xx-xx-xx-Expires-13-Mar-2022"
},
"appGwSkuName": {
"value": "Standard_v2"
},
"appGwSkuTier": {
"value": "Standard_v2"
},
"customVnetId": {
"value": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx/resourceGroups/IT-Infra-Mgmt-DevTest/providers/Microsoft.Network/virtualNetworks/IT-Infra-Mgmt-DevTest-Vnet"
},
"customSubnets": {
"value": {
"singleSubnetDeploy": true,
"subnets": [
{
"name": "DevTest-private",
"addressPrefix": "xxx.20.8.0/25",
"metadata": {
"description": "Web Subnet [0]"
}
},
{
"name": "",
"addressPrefix": "",
"nfsHaLbIP": "",
"nfsHaNode0IP": "",
"nfsHaNode1IP": "",
"metadata": {
"description": "San Subnet and Required IPs for NFS-HA deployment [1]"
}
},
{
"name": "",
"addressPrefix": "",
"metadata": {
"description": "Redis Subnet [2]"
}
},
{
"name": "",
"addressPrefix": "",
"metadata": {
"description": "Elastic Subnet [3]"
}
},
{
"name": "",
"addressPrefix": "",
"metadata": {
"description": "Tika Subnet [4]"
}
},
{
"name": "",
"addressPrefix": "",
"metadata": {
"description": "VNet Gateway Subnet [5]"
}
},
{
"name": "DevTest-AppGW",
"addressPrefix": "xxx.20.9.0/26",
"metadata": {
"description": "Application Gateway Subnet [6]"
}
}
]
}
}
}
}