forked from njray/Hana-Test-Deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azuredeploy.parameters.json
60 lines (60 loc) · 1.54 KB
/
azuredeploy.parameters.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
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"VMName": {
"value": "testVm"
},
"HANAJumpbox": {
"value": "yes"
},
"VMSize": {
"value": "Standard_GS5 (448 GB, Certified)"
},
"NetworkName": {
"value": "ra-sap-hana-vnet"
},
"addressPrefixes": {
"value": "10.0.0.0/16"
},
"HANASubnetName": {
"value": "SAPDataSubnet"
},
"HANASubnetPrefix": {
"value": "10.0.5.0/24"
},
"ManagementSubnetName": {
"value": "SAPMgmtSubnet"
},
"ManagementSubnetPrefix": {
"value": "10.0.6.0/24"
},
"customURI": {
"value": "https://yourblobname.blob.core.windows.net/yourContainerName"
},
"VMUserName": {
"value": "testuser"
},
"VMPassword": {
"value": "YourPassword"
},
"OperatingSystem": {
"value": "SLES for SAP 12 SP3"
},
"HANASID": {
"value": "H10"
},
"HANANumber": {
"value": "00"
},
"ExistingNetworkResourceGroup": {
"value": "no"
},
"IPAllocationMethod": {
"value": "Static"
},
"StaticIP": {
"value": "10.0.5.4"
}
}
}