-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazuredeploy.parameters.stack.json
More file actions
114 lines (114 loc) · 3.03 KB
/
Copy pathazuredeploy.parameters.stack.json
File metadata and controls
114 lines (114 loc) · 3.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
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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"deploymentPrefix": {
"value": "FG"
},
"deploymentLocation":{
"value": "local"
},
"supernetPrefix": {
"value": "10.197.96.0/21"
},
"vnetAddressPrefixes": {
"value": ["10.197.98.0/24"]
},
"vnetDnsServers": {
"value": ["10.197.98.36","10.197.98.37"]
},
"subnetPrefixVNGW": {
"value": "10.197.98.0/27"
},
"subnetPrefixADDS": {
"value": "10.197.98.32/27"
},
"subnetPrefixADFS": {
"value": "10.197.98.64/27"
},
"subnetPrefixWAP": {
"value": "10.197.98.96/27"
},
"subnetPrefixJUMP": {
"value": "10.197.98.128/27"
},
"addsServersIpAddresses": {
"value": ["10.197.98.36","10.197.98.37"]
},
"adfsServersIpAddresses": {
"value": ["10.197.98.68","10.197.98.69"]
},
"adcaServersIpAddresses": {
"value": ["10.197.98.38"]
},
"internalAdfsLbIpAddress": {
"value": "10.197.98.70"
},
"wapServersIpAddresses": {
"value": ["10.197.98.100","10.197.98.101"]
},
"jumpServersIpAddresses": {
"value": ["10.197.98.132","10.197.98.133"]
},
"tagSystem": {
"value": "Core Services"
},
"addsVmSize": {
"value": "Standard_A2"
},
"adfsVmSize": {
"value": "Standard_A2"
},
"adcaVmSize": {
"value": "Standard_A2"
},
"wapVmSize": {
"value": "Standard_A1"
},
"jumpVmSize": {
"value": "Standard_DS3_v2"
},
"keyVaultFullAccessAadGroupId": {
"value": "S-1-5-21-179521936-3392370605-1578141762-1261"
},
"daUserName": {
"value": "dauser1"
},
"addsDomainName": {
"value": "ad.fabien.lab"
},
"publicDomainName": {
"value": "fabien.lab"
},
"laUserName": {
"value": "lauser1"
},
"djUserName": {
"value": "djuser1"
},
"stackBackEndSubnet": {
"value": "192.168.200.0/24"
},
"mgmtAllowedPrivateIp": {
"value": "172.25.11.0/24"
},
"adds01dscConfig": {
"value": "addsCreateDomain"
},
"adds02dscConfig": {
"value": "addsDomainController"
},
"adfsDscConfig": {
"value": "adfsInstall"
},
"adcaDscConfig": {
"value": "adcsCreateCA"
},
"wapDscConfig": {
"value": "wapInstall"
},
"jumpDscConfig": {
"value": "jumpInstall"
}
}
}