Last active
November 27, 2017 17:41
-
-
Save duffney/77f038437abbd742fa3b0614bf6471a4 to your computer and use it in GitHub Desktop.
Configuration data for DSC pull server lab environment provisioning with Lability.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
AllNodes = @( | |
@{ | |
NodeName = '*' | |
Lability_SwitchName = 'External' | |
DomainName = 'globomantics.com' | |
Lability_StartupMemory = 2GB; | |
PSDscAllowPlainTextPassword = $true; | |
} | |
@{ | |
NodeName = 'Pull' | |
Lability_ProcessorCount = 2 | |
Lability_Media = '2016_x64_Datacenter_EN_Eval' | |
Lability_HasDynamicMemory = $false | |
} | |
) | |
NonNodeData = @{ | |
Lability = @{ | |
# Prefix all of our VMs with 'LAB-' in Hyper-V | |
EnvironmentPrefix = 'DSC-' | |
Network = @( | |
@{ | |
Name = 'External' | |
Type = 'External' | |
NetadapterName = 'Ethernet' | |
AllowManagementOS = $true | |
} | |
) # network | |
DSCResource = @( | |
@{ Name = 'xActiveDirectory'; MinimumVersion = '2.16.0.0'; } | |
@{ Name = 'xPSDesiredStateConfiguration'; MinimumVersion = '6.0.0.0'; } | |
@{ Name = 'xAdcsDeployment'; MinimumVersion = '1.1.0.0'; } | |
) | |
} # lability' | |
} # nonnodedate | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment