Over the summer, the PowerShell Access Control module got some DSC resources to help manage security descriptors for for some of the supported object types. The module includes three resources: cAccessControlEntry
, cSecurityDescriptorSddl
, and cSecurityDescriptor
.
When a Composite Configuration is created as an ordinary module, it seems like it behaves like an ordinary Cmdlet. This means, to pass parameters to the composite configuration I had to do:
Node localhost
{
BaseConfig Common -MyParameter "My Parameter Value" {}
}
powershell
dsc