-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPSDEVOPS.Original.psd1
33 lines (32 loc) · 1.3 KB
/
PSDEVOPS.Original.psd1
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
@{
AllNodes = @(
@{
NodeName = '*';
InterfaceAlias = 'Ethernet';
DefaultGateway = '10.200.0.2';
SubnetMask = 24;
AddressFamily = 'IPv4';
DnsServerAddress = '10.200.0.10';
DomainName = 'psdevops.local';
#CertificateFile = "$env:AllUsersProfile\Lability\Certificates\LabClient.cer";
#Thumbprint = '5940D7352AB397BFB2F37856AA062BB471B43E5E';
PSDscAllowPlainTextPassword = $true;
PSDscAllowDomainUser = $true; # Removes 'It is not recommended to use domain credential for node X' messages
}
@{
NodeName = 'DC1';
IPAddress = '10.200.0.10';
DnsServerAddress = '127.0.0.1';
Role = 'DC';
}
@{
NodeName = 'APP1';
IPAddress = '10.200.0.11';
Role = 'APP';
}
@{
NodeName = 'CLIENT1';
Role = 'CLIENT';
}
);
};