Skip to content

Instantly share code, notes, and snippets.

@frankiem-4
Forked from duffney/DSCPullServerLab.psd1
Created November 27, 2017 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankiem-4/9e461dfc61c95354c517f5ac60d45f18 to your computer and use it in GitHub Desktop.
Save frankiem-4/9e461dfc61c95354c517f5ac60d45f18 to your computer and use it in GitHub Desktop.
Configuration data for DSC pull server lab environment provisioning with Lability.
@{
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