control-repo/site-modules/profile/manifests/custom_windows/deploy_iis.pp
2020-02-12 16:53:54 +00:00

14 lines
249 B
Puppet

class profile::custom_windows::deploy_iis (
) {
dsc {'iis':
resource_name => 'WindowsFeature',
module => 'PSDesiredStateConfiguration',
properties => {
ensure => 'present',
name => 'Web-Server',
}
}
}