-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathazureDeploy.parameters.json
More file actions
39 lines (39 loc) · 1.03 KB
/
Copy pathazureDeploy.parameters.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"adminUsername": {
"value": "architech"
},
"adminPassword": {
"value": "@wsxZaq1"
},
"vnetName": {
"value": "architech-training-vnet"
},
"vnetAddressPrefix": {
"value": "192.168.0.0/16"
},
"appSubnetAddressPrefix": {
"value": "192.168.1.0/24"
},
"dbSubnetAddressPrefix": {
"value": "192.168.2.0/24"
},
"jumpboxSubnetAddressPrefix": {
"value": "192.168.3.0/24"
},
"storageAccountName": {
"value": "architechtrainingvhds"
},
"storageContainerName": {
"value": "vhds"
},
"jumpboxDnsPrefix": {
"value": "jumpbox-architech-training"
},
"appDnsPrefix": {
"value": "architech-training-iaas"
}
}
}