Created
February 7, 2018 01:40
-
-
Save gaelcolas/8de589d716ac92c649dfa6ba99d2d049 to your computer and use it in GitHub Desktop.
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
foreach($Node in $ConfigurationData.AllNodes) { | |
# Retrieving the DSC Composite Resource name to include | |
$configurations = $ConfigurationData.Roles.($Node.Role).configurations | |
foreach($ConfigurationName in $configurations) { | |
$ConfigurationParameters = $ConfigurationData.Roles.($Node.Role).($ConfigurationName) | |
# Splat the Configuration Parameters defined in the Role to the Composite resource | |
&$ConfigurationName @ConfigurationParameters | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment