webadministrationdsc
Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
- Puppet >= 7.0.0 < 9.0.0
Start using this module
Add this module to your Puppetfile:
mod 'dsc-webadministrationdsc', '4.2.1-0-0'
Learn more about managing modules with a PuppetfileDocumentation
webadministrationdsc
Table of Contents
Description
This is an auto-generated module, using the Puppet DSC Builder to vendor and expose the WebAdministrationDsc PowerShell module's DSC resources as Puppet resources. The functionality of this module comes entirely from the vendored PowerShell resources, which are pinned at v4.2.1. The PowerShell module describes itself like this:
Module with DSC Resources for Web Administration
For information on troubleshooting to determine whether any encountered problems are with the Puppet wrapper or the DSC resource, see the troubleshooting section below.
Requirements
This module, like all auto-generated Puppetized DSC modules, relies on two important technologies in the Puppet stack: the Puppet Resource API and the puppetlabs/pwshlib Puppet module.
The Resource API provides a simplified option for writing types and providers and is responsible for how this module is structured. The Resource API ships inside of Puppet starting with version 6. While it is technically possible to add the Resource API functionality to Puppet 5.5.x, the DSC functionality has not been tested in this setup. For more information on the Resource API, review the documentation.
The module also depends on the pwshlib module. This Puppet module includes two important things: the ruby-pwsh library for running PowerShell code from ruby and the base provider for DSC resources, which this module leverages.
All of the actual work being done to call the DSC resources vendored with this module is in this file from the pwshlib module. This is important for troubleshooting and bug reporting, but doesn't impact your use of the module except that the end result will be that nothing works, as the dependency is not installed alongside this module!
Long File Path Support
Several PowerShell modules with DSC Resources end up with very long file paths once vendored, many of which exceed the 260 character limit for file paths. Luckily in Windows 10 (build 1607+), Windows Server 2016 (build 1607+), and Windows Server 2019 there is now an option for supporting long file paths transparently!
We strongly recommend enabling long file path support on any machines using this module to avoid path length issues.
You can set this value using the Puppet registry_value
resource:
registry_value { 'HKLM\System\CurrentControlSet\Control\FileSystem\LongPathsEnabled':
ensure => 'present',
data => [1],
provider => 'registry',
type => 'dword',
}
You can also set this value outside of Puppet by following the Microsoft documentation.
Usage
You can specify any of the DSC resources from this module like a normal Puppet resource in your manifests. The examples below use DSC resources from from the PowerShellGet repository, regardless of what module you're looking at here; the syntax, not the specifics, is what's important.
For reference documentation about the DSC resources exposed in this module, see the Reference Forge tab, or the REFERENCE.md file.
# Include a meaningful title for your resource declaration
dsc_psrepository { 'Add team module repo':
dsc_name => 'foo',
dsc_ensure => present,
# This location is nonsense, can be any valid folder on your
# machine or in a share, any location the SourceLocation param
# for the DSC resource will accept.
dsc_sourcelocation => 'C:\Program Files',
# You must always pass an enum fully lower-cased;
# Puppet is case sensitive even when PowerShell isn't
dsc_installationpolicy => untrusted,
}
dsc_psrepository { 'Trust public gallery':
dsc_name => 'PSGallery',
dsc_ensure => present,
dsc_installationpolicy => trusted,
}
dsc_psmodule { 'Make Ruby manageable via uru':
dsc_name => 'RubyInstaller',
dsc_ensure => present,
}
Credentials
Credentials are always specified as a hash of the username and password for the account. The password must use the Puppet Sensitive type; this ensures that logs and reports redact the password, displaying it instead as <Sensitive [value redacted]>.
dsc_psrepository { 'PowerShell Gallery':
dsc_name => 'psgAllery',
dsc_installationpolicy => 'Trusted',
dsc_psdscrunascredential => {
user => 'apple',
password => Sensitive('foobar'),
},
}
Class-Based Resources
Class-based DSC Resources can be used like any other DSC Resource in this module, with one important note:
Due to a bug in calling class-based DSC Resources by path instead of module name, each call to Invoke-DscResource
needs to temporarily munge the system-level environment variable for PSModulePath
;
the variable is reset prior to the end of each invocation.
CIM Instances
Because the CIM instances for DSC resources are fully mapped, the types actually explain fairly precisely what the shape of each CIM instance has to be - and, moreover, the type definition means that you get checking at catalog compile time. Puppet parses CIM instances are structured hashes (or arrays of structured hashes) that explicitly declare their keys and the valid types of values for each key.
So, for the dsc_accesscontrolentry
property of the dsc_ntfsaccessentry
type, which has a MOF type of NTFSAccessControlList[]
, Puppet defines the CIM instance as:
Array[Struct[{
accesscontrolentry => Array[Struct[{
accesscontroltype => Enum['Allow', 'Deny'],
inheritance => Enum['This folder only', 'This folder subfolders and files', 'This folder and subfolders', 'This folder and files', 'Subfolders and files only', 'Subfolders only', 'Files only'],
ensure => Enum['Present', 'Absent'],
cim_instance_type => 'NTFSAccessControlEntry',
filesystemrights => Array[Enum['AppendData', 'ChangePermissions', 'CreateDirectories', 'CreateFiles', 'Delete', 'DeleteSubdirectoriesAndFiles', 'ExecuteFile', 'FullControl', 'ListDirectory', 'Modify', 'Read', 'ReadAndExecute', 'ReadAttributes', 'ReadData', 'ReadExtendedAttributes', 'ReadPermissions', 'Synchronize', 'TakeOwnership', 'Traverse', 'Write', 'WriteAttributes', 'WriteData', 'WriteExtendedAttributes']]
}]],
forceprincipal => Optional[Boolean],
principal => Optional[String],
}]]
A valid example of that in a puppet manifest looks like this:
dsc_accesscontrollist => [
{
accesscontrolentry => [
{
accesscontroltype => 'Allow',
inheritance => 'This folder only',
ensure => 'Present',
filesystemrights => 'ChangePermissions',
cim_instance_type => 'NTFSAccessControlEntry',
},
],
principal => 'veryRealUserName',
},
]
For more information about using a built module, check out our narrative documentation.
Properties
Note that the only properties specified in a resource declaration which are passed to Invoke-Dsc are all prepended with dsc.
If a property does _not start with dsc_ it is used to control how Puppet interacts with DSC/other Puppet resources - for example,
specifying a unique name for the resource for Puppet to distinguish between declarations or Puppet metaparameters (notifies,
before, etc).
Validation Mode
By default, these resources use the property validation mode, which checks whether or not the resource is in the desired state the same way most Puppet resources are validated;
by comparing the properties returned from the system with those specified in the manifest.
Sometimes, however, this is insufficient;
many DSC Resources return data that does not compare properly to the desired state (some are missing properties, others are malformed, some simply cannot be strictly compared).
In these cases, you can set the validation mode to resource
, which falls back on calling Invoke-DscResource
with the Test
method and trusts that result.
When using the resource
validation mode, the resource is tested once and will then treat all properties of that resource as in sync (if the result returned true
) or not in sync.
This loses the granularity of change reporting for the resource but prevents flapping and unexpected behavior.
# This will flap because the DSC resource never returns name in SecurityPolicyDsc v2.10.0.0
dsc_securityoption { 'Enforce Anonoymous SID Translation':
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
# This will idempotently apply
dsc_psrepository { 'PowerShell Gallery':
validation_mode => 'resource',
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
It is important to note that this feature is only supported with a version of puppetlabs-pwshlib
equal to or higher than 0.9.0
, in which the supporting code for the DSC Base Provider to implement custom insync was shipped.
Finally, while this module's metadata says that the supported Puppet versions are 6.0.0 and up, the implementation of the validation_mode
parameter relies on the custom_insync
feature of the Puppet Resource API.
The custom_insync
feature first shipped in the puppet-resource_api
version 1.8.14
, which itself is only included in Puppet versions equal to or newer than 6.23.0
and 7.8.0
for the 6x and 7x platforms respectively.
Using this module against older Puppet versions will result in a warning (example below) and only use the default property-by-property change reporting, regardless of the setting of validation_mode
.
Warning: Unknown feature detected: ["custom_insync"]
Troubleshooting
In general, there are three broad categories of problems:
- Problems with the way the underlying DSC resource works.
- Problems with the type definition, where you can't specify a valid set of properties for the DSC resource
- Problems with calling the underlying DSC resource - the parameters aren't being passed correctly or the resource can't be found
Unfortunately, problems with the way the underlying DSC resource works are something we can't help directly with. You'll need to file an issue with the upstream maintainers for the PowerShell module.
Problems with the type definition are when a value that should be valid according to the DSC resource's documentation and code is not accepted by the Puppet wrapper. If and when you run across one of these, please file an issue with the Puppet DSC Builder; this is where the conversion happens and once we know of a problem we can fix it and regenerate the Puppet modules. To help us identify the issue, please specify the DSC module, version, resource, property and values that are giving you issues. Once a fix is available we will regenerate and release updated versions of this Puppet wrapper.
Problems with calling the underlying DSC resource become apparent by comparing <value passed in in puppet>
with <value received by DSC>
.
In this case, please file an issue with the puppetlabs/pwshlib module, which is where the DSC base provider actually lives.
We'll investigate and prioritize a fix and update the puppetlabs/pwshlib module.
Updating to the pwshlib version with the fix will immediately take advantage of the improved functionality without waiting for this module to be reconverted and published.
For specific information on troubleshooting a generated module, check the troubleshooting guide for the puppet.dsc module.
Known Limitations
-
Currently, because of the way Puppet caches files on agents, use of the legacy
puppetlabs-dsc
module is not compatible with this or any auto-generated DSC module. Inclusion of both will lead to pluginsync conflicts. -
Right now, if you have the same version of a PowerShell module with class-based DSC Resources in your PSModulePath as vendored in a Puppetized DSC Module, you cannot use those class-based DSC Resources from inside of Puppet due to a bug in DSC which prevents using a module by path reference instead of name. Instead, DSC will see that there are two DSC Resources for the same module and version and then error out.
-
When PowerShell Script Block Logging is enabled, data marked as sensitive in your manifest may appear in these logs as plain text. It is highly recommended, by both Puppet and Microsoft, that you also enable Protected Event Logging alongside this to encrypt the logs to protect this information.
Configuring the LCM
In order for a Puppetized DSC module to function, the DSC Local Configuration Manager (LCM) RefreshMode
must be set to either Push
or Disabled
.
The default value for RefreshMode
in WMF 5.0 and WMF 5.1 is Push
- so if it has not been set to anything else then there is no action needed on your part.
However if the value of the LCM has been set to anything other than Push
then the module will not function and so the value must either be changed back or disabled.
The Puppetized DSC modules use the Invoke-DscResource
cmdlet to invoke DSC Resources of the target machine.
If the RefreshMode
is set to Pull
, DSC Resources will only run from a DSC Pull Server - in this setting DSC does not allow any DSC Resources to be run interactively on the host.
Module Installation
If you're using this module with Puppet Enterprise and Code Manager, everything should "just work" - no errors or issues acquiring and deploying this or any Puppetized DSC module to nodes.
Unfortunately, due a bug in minitar which prevents it from unpacking archives with long file paths, both r10k
and serverless Puppet (via puppet module install
) methods of installing modules with long path names will fail.
In short, minitar is unable to unpack modules that contain long file paths (though it can create them).
As a workaround, you can retrieve DSC modules from the forge via PowerShell and 7zip:
$ModuleAuthor = 'dsc'
$ModuleName = 'xremotedesktopsessionhost'
$ModuleVersion = '2.0.0-0-1'
$ArchiveFileName = "$ModuleAuthor-$ModuleName-$ModuleVersion.tar.gz"
$DownloadUri = "https://forge.puppet.com/v3/files/$ArchiveFileName"
# Download the module tar.gz to the current directory
Invoke-WebRequest -Uri $DownloadUri -OutFile ./$ArchiveFileName
# Use 7zip to extract the module to the current directory
& 7z x $ArchiveFileName -so | & 7z x -aoa -si -ttar
Reference
Table of Contents
Resource types
dsc_iisfeaturedelegation
: The DSC IisFeatureDelegation resource type. Automatically generated from version 4.2.1dsc_iislogging
: The DSC IisLogging resource type. Automatically generated from version 4.2.1dsc_iismimetypemapping
: The DSC IisMimeTypeMapping resource type. Automatically generated from version 4.2.1dsc_iismodule
: The DSC IisModule resource type. Automatically generated from version 4.2.1dsc_sslsettings
: The DSC SslSettings resource type. Automatically generated from version 4.2.1dsc_webapplication
: The DSC WebApplication resource type. Automatically generated from version 4.2.1dsc_webapplicationhandler
: The DSC WebApplicationHandler resource type. Automatically generated from version 4.2.1dsc_webapppool
: The DSC WebAppPool resource type. Automatically generated from version 4.2.1dsc_webapppooldefaults
: The DSC WebAppPoolDefaults resource type. Automatically generated from version 4.2.1dsc_webconfigproperty
: The DSC WebConfigProperty resource type. Automatically generated from version 4.2.1dsc_webconfigpropertycollection
: The DSC WebConfigPropertyCollection resource type. Automatically generated from version 4.2.1dsc_website
: The DSC WebSite resource type. Automatically generated from version 4.2.1dsc_websitedefaults
: The DSC WebSiteDefaults resource type. Automatically generated from version 4.2.1dsc_webvirtualdirectory
: The DSC WebVirtualDirectory resource type. Automatically generated from version 4.2.1
Resource types
dsc_iisfeaturedelegation
The DSC IisFeatureDelegation resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_iisfeaturedelegation
type.
dsc_overridemode
Data type: Enum['Allow', 'allow', 'Deny', 'deny']
Determines whether to lock or unlock the specified section.
Parameters
The following parameters are available in the dsc_iisfeaturedelegation
type.
dsc_filter
namevar
Data type: String
Specifies the IIS configuration section to lock or unlock.
dsc_path
namevar
Data type: String
Specifies the configuration path. This can be either an IIS configuration path in the format computer machine/webroot/apphost, or the IIS module path in this format IIS:\sites\Default Web Site.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_iislogging
The DSC IisLogging resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_iislogging
type.
dsc_logcustomfields
Data type: Optional[Array[Struct[{ sourcetype => Enum['RequestHeader', 'requestheader', 'ResponseHeader', 'responseheader', 'ServerVariable', 'servervariable'], sourcename => String, ensure => Optional[Enum['Present', 'present', 'Absent', 'absent']], logfieldname => String }]]]
Custom logging field information in the form of an array of embedded instances of DSC_LogCustomField CIM class
dsc_logflags
Data type: Optional[Array[Enum['Date', 'date', 'Time', 'time', 'ClientIP', 'clientip', 'UserName', 'username', 'SiteName', 'sitename', 'ComputerName', 'computername', 'ServerIP', 'serverip', 'Method', 'method', 'UriStem', 'uristem', 'UriQuery', 'uriquery', 'HttpStatus', 'httpstatus', 'Win32Status', 'win32status', 'BytesSent', 'bytessent', 'BytesRecv', 'bytesrecv', 'TimeTaken', 'timetaken', 'ServerPort', 'serverport', 'UserAgent', 'useragent', 'Cookie', 'cookie', 'Referer', 'referer', 'ProtocolVersion', 'protocolversion', 'Host', 'host', 'HttpSubStatus', 'httpsubstatus']]]
The W3C logging fields
dsc_logformat
Data type: Optional[Enum['IIS', 'iis', 'W3C', 'w3c', 'NCSA', 'ncsa']]
Format of the Logfiles. Only W3C supports LogFlags
dsc_loglocaltimerollover
Data type: Optional[Boolean]
Use the localtime for file naming and rollover
dsc_logperiod
Data type: Optional[Enum['Hourly', 'hourly', 'Daily', 'daily', 'Weekly', 'weekly', 'Monthly', 'monthly', 'MaxSize', 'maxsize']]
How often the log file should rollover
dsc_logtargetw3c
Data type: Optional[Enum['File', 'file', 'ETW', 'etw', 'File,ETW', 'file,etw']]
Specifies whether IIS will use Event Tracing or file logging
dsc_logtruncatesize
Data type: Optional[String]
How large the file should be before it is truncated
Parameters
The following parameters are available in the dsc_iislogging
type.
dsc_logpath
namevar
Data type: String
The directory to be used for logfiles
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_iismimetypemapping
The DSC IisMimeTypeMapping resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_iismimetypemapping
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Ensures that the MIME type mapping is Present or Absent.
Parameters
The following parameters are available in the dsc_iismimetypemapping
type.
dsc_configurationpath
dsc_extension
dsc_mimetype
dsc_psdscrunascredential
dsc_timeout
name
validation_mode
dsc_configurationpath
namevar
Data type: String
This can be either an IIS configuration path in the format computername/webroot/apphost, or the IIS module path in this format IIS:\sites\Default Web Site.
dsc_extension
namevar
Data type: String
The file extension to map such as .html or .xml.
dsc_mimetype
namevar
Data type: String
The MIME type to map that extension to such as text/html.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_iismodule
The DSC IisModule resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_iismodule
type.
dsc_endpointsetup
Data type: Optional[Boolean]
The End Point is setup. Such as a Fast Cgi endpoint.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Should the module be present or absent.
dsc_moduletype
Data type: Optional[Enum['FastCgiModule', 'fastcgimodule']]
The type of the module.
dsc_name
Data type: String
The logical name of the module to add to IIS.
dsc_requestpath
Data type: String
The allowed request Path example: *.php
dsc_sitename
Data type: Optional[String]
The IIS Site to register the module.
dsc_verb
Data type: Array[String]
The supported verbs for the module.
Parameters
The following parameters are available in the dsc_iismodule
type.
dsc_path
namevar
Data type: String
The path to the module, usually a dll, to be added to IIS.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_sslsettings
The DSC SslSettings resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_sslsettings
type.
dsc_bindings
Data type: Array[Enum['', 'Ssl', 'ssl', 'SslNegotiateCert', 'sslnegotiatecert', 'SslRequireCert', 'sslrequirecert', 'Ssl128', 'ssl128']]
The Bindings in which to modify for the website
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Whether the bindings should be present or absent
Parameters
The following parameters are available in the dsc_sslsettings
type.
dsc_name
namevar
Data type: String
Name of website in which to modify the SSL Settings
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webapplication
The DSC WebApplication resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webapplication
type.
dsc_applicationtype
Data type: Optional[String]
Adds a AutostartProvider ApplicationType
dsc_authenticationinfo
Data type: Optional[Struct[{ basic => Optional[Boolean], anonymous => Optional[Boolean], digest => Optional[Boolean], windows => Optional[Boolean] }]]
Hashtable containing authentication information (Anonymous, Basic, Digest, Windows)
dsc_enabledprotocols
Data type: Optional[Array[Enum['http', 'https', 'net.tcp', 'net.msmq', 'net.pipe']]]
Adds EnabledProtocols on an Application
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Whether web application should be present or absent
dsc_physicalpath
Data type: String
Physical path for the web application directory
dsc_preloadenabled
Data type: Optional[Boolean]
Allows a Application to automatically start without a request
dsc_serviceautostartenabled
Data type: Optional[Boolean]
Enables Autostart on an Application.
dsc_serviceautostartprovider
Data type: Optional[String]
Adds a AutostartProvider
dsc_sslflags
Data type: Optional[Array[Enum['', 'Ssl', 'ssl', 'SslNegotiateCert', 'sslnegotiatecert', 'SslRequireCert', 'sslrequirecert', 'Ssl128', 'ssl128']]]
SSLFlags for the application
dsc_webapppool
Data type: String
Web application pool for the web application
Parameters
The following parameters are available in the dsc_webapplication
type.
dsc_name
namevar
Data type: String
Name of web application
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_website
namevar
Data type: String
Name of website with which web application is associated
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webapplicationhandler
The DSC WebApplicationHandler resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webapplicationhandler
type.
dsc_allowpathinfo
Data type: Optional[Boolean]
Specifies whether the handler processes full path information in a URI, such as contoso/marketing/imageGallery.aspx. If the value is true, the handler processes the full path, contoso/marketing/imageGallery. If the value is false, the handler processes only the last section of the path, /imageGallery.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Indicates if the application handler exists. Set this property to Absent
to ensure that the application handler does not exist. Default value is 'Present'.
dsc_location
Data type: Optional[String]
Specifies The location of the configuration setting. Location tags are frequently used for configuration settings that must be set more precisely than per application or per virtual directory.
dsc_modules
Data type: Optional[String]
Specifies the modules used for the handler.
dsc_path
Data type: Array[String]
Specifies an IIS configuration path.
dsc_physicalhandlerpath
Data type: Optional[String]
Specifies the physical path to the handler. This parameter applies to native modules only.
dsc_precondition
Data type: Optional[String]
Specifies preconditions for the new handler.
dsc_requireaccess
Data type: Optional[Enum['None', 'none', 'Read', 'read', 'Write', 'write', 'Script', 'script', 'Execute', 'execute']]
Specifies the user rights that are required for the new handler.
dsc_resourcetype
Data type: Optional[String]
Specifies the resource type this handler runs.
dsc_responsebufferlimit
Data type: Optional[Integer[0, 4294967295]]
Specifies the maximum size, in bytes, of the response buffer for a request handler runs.
dsc_scriptprocessor
Data type: Optional[String]
Specifies the script processor that runs for the module.
dsc_type
Data type: Optional[String]
Specifies the managed type of the new module. This parameter applies to managed modules only.
dsc_verb
Data type: Optional[String]
Specifies the HTTP verbs that are handled by the new handler.
Parameters
The following parameters are available in the dsc_webapplicationhandler
type.
dsc_name
namevar
Data type: String
Specifies the name of the new request handler.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webapppool
The DSC WebAppPool resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webapppool
type.
dsc_autoshutdownexe
Data type: Optional[String]
Indicates an executable to run when the application pool is shut down by rapid-fail protection.
dsc_autoshutdownparams
Data type: Optional[String]
Indicates parameters for the executable that is specified in the autoShutdownExe property.
dsc_autostart
Data type: Optional[Boolean]
When set to true, indicates to the World Wide Web Publishing Service (W3SVC) that the application pool should be automatically started when it is created or when IIS is started.
dsc_clrconfigfile
Data type: Optional[String]
Indicates the .NET configuration file for the application pool.
dsc_cpuaction
Data type: Optional[Enum['NoAction', 'noaction', 'KillW3wp', 'killw3wp', 'Throttle', 'throttle', 'ThrottleUnderLoad', 'throttleunderload']]
Configures the action that IIS takes when a worker process exceeds its configured CPU limit. The values that are allowed for this property are: NoAction, KillW3wp, Throttle, and ThrottleUnderLoad.
dsc_cpulimit
Data type: Optional[Integer[0, 4294967295]]
Configures the maximum percentage of CPU time (in 1/1000ths of one percent) that the worker processes in the application pool are allowed to consume over a period of time as indicated by the cpuResetInterval property. The value must be a valid integer between 0 and 100000.
dsc_cpuresetinterval
Data type: Optional[String]
Indicates the reset period (in minutes) for CPU monitoring and throttling limits on the application pool. The value must be a string representation of a TimeSpan value. The valid range (in minutes) is 0 to 1440. Setting the value of this property to 0 disables CPU monitoring.
dsc_cpusmpaffinitized
Data type: Optional[Boolean]
Indicates whether a particular worker process assigned to the application pool should also be assigned to a given CPU.
dsc_cpusmpprocessoraffinitymask
Data type: Optional[Integer[0, 4294967295]]
Indicates the hexadecimal processor mask for multi-processor computers, which indicates to which CPU the worker processes in the application pool should be bound. Before this property takes effect, the cpuSmpAffinitized property must be set to true for the application pool. The value must be a valid integer between 0 and 4294967295.
dsc_cpusmpprocessoraffinitymask2
Data type: Optional[Integer[0, 4294967295]]
Indicates the high-order DWORD hexadecimal processor mask for 64-bit multi-processor computers, which indicates to which CPU the worker processes in the application pool should be bound. Before this property takes effect, the cpuSmpAffinitized property must be set to true for the application pool. The value must be a valid integer between 0 and 4294967295.
dsc_disallowoverlappingrotation
Data type: Optional[Boolean]
Indicates whether the W3SVC service should start another worker process to replace the existing worker process while that process is shutting down. If true, the application pool recycle will happen such that the existing worker process exits before another worker process is created.
dsc_disallowrotationonconfigchange
Data type: Optional[Boolean]
Indicates whether the W3SVC service should rotate worker processes in the application pool when the configuration has changed. If true, the application pool will not recycle when its configuration is changed.
dsc_enable32bitapponwin64
Data type: Optional[Boolean]
When set to true, enables a 32-bit application to run on a computer that runs a 64-bit version of Windows.
dsc_enableconfigurationoverride
Data type: Optional[Boolean]
When set to true, indicates that delegated settings in Web.config files will processed for applications within this application pool. When set to false, all settings in Web.config files will be ignored for this application pool.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Indicates if the application pool exists. Set this property to Absent to ensure that the application pool does not exist. Setting it to Present (the default value) ensures that the application pool exists.
dsc_identitytype
Data type: Optional[Enum['ApplicationPoolIdentity', 'applicationpoolidentity', 'LocalService', 'localservice', 'LocalSystem', 'localsystem', 'NetworkService', 'networkservice', 'SpecificUser', 'specificuser']]
Indicates the account identity under which the application pool runs. The values that are allowed for this property are: ApplicationPoolIdentity, LocalService, LocalSystem, NetworkService, and SpecificUser.
dsc_idletimeout
Data type: Optional[String]
Indicates the amount of time (in minutes) a worker process will remain idle before it shuts down. The value must be a string representation of a TimeSpan value and must be less than the restartTimeLimit property value. The valid range (in minutes) is 0 to 43200.
dsc_idletimeoutaction
Data type: Optional[Enum['Terminate', 'terminate', 'Suspend', 'suspend']]
Indicates the action to perform when the idle timeout duration has been reached. The values that are allowed for this property are: Terminate, Suspend.
dsc_loadbalancercapabilities
Data type: Optional[Enum['HttpLevel', 'httplevel', 'TcpLevel', 'tcplevel']]
Indicates the response behavior of a service when it is unavailable. The values that are allowed for this property are: HttpLevel, TcpLevel. If set to HttpLevel and the application pool is stopped, HTTP.sys will return HTTP 503 error. If set to TcpLevel, HTTP.sys will reset the connection.
dsc_loaduserprofile
Data type: Optional[Boolean]
Indicates whether IIS loads the user profile for the application pool identity.
dsc_logeventonprocessmodel
Data type: Optional[String]
Indicates that IIS should generate an event log entry for each occurrence of the specified process model events.
dsc_logeventonrecycle
Data type: Optional[String]
Indicates that IIS should generate an event log entry for each occurrence of the specified recycling events.
dsc_logontype
Data type: Optional[Enum['LogonBatch', 'logonbatch', 'LogonService', 'logonservice']]
Indicates the logon type for the process identity. The values that are allowed for this property are: LogonBatch, LogonService.
dsc_managedpipelinemode
Data type: Optional[Enum['Integrated', 'integrated', 'Classic', 'classic']]
Indicates the request-processing mode that is used to process requests for managed content. The values that are allowed for this property are: Integrated, Classic.
dsc_managedruntimeloader
Data type: Optional[String]
Indicates the managed loader to use for pre-loading the application pool.
dsc_managedruntimeversion
Data type: Optional[Enum['v4.0', 'v2.0', '']]
Indicates the CLR version to be used by the application pool. The values that are allowed for this property are: v4.0, v2.0, and ''.
dsc_manualgroupmembership
Data type: Optional[Boolean]
Indicates whether the IIS_IUSRS group Security Identifier (SID) is added to the worker process token.
dsc_maxprocesses
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum number of worker processes that would be used for the application pool. The value must be a valid integer between 0 and 2147483647.
dsc_orphanactionexe
Data type: Optional[String]
Indicates an executable to run when a worker process is orphaned.
dsc_orphanactionparams
Data type: Optional[String]
Indicates parameters for the executable that is specified in the orphanActionExe property.
dsc_orphanworkerprocess
Data type: Optional[Boolean]
Indicates whether to assign a worker process to an orphan state instead of terminating it when the application pool fails. If true, an unresponsive worker process will be orphaned instead of terminated.
dsc_passanonymoustoken
Data type: Optional[Boolean]
When set to true, the Windows Process Activation Service (WAS) creates and passes a token for the built-in IUSR anonymous user account to the Anonymous authentication module. The Anonymous authentication module uses the token to impersonate the built-in account. When this property is set to false, the token will not be passed.
dsc_pingingenabled
Data type: Optional[Boolean]
Indicates whether pinging (health monitoring) is enabled for the worker process(es) serving this application pool.
dsc_pinginterval
Data type: Optional[String]
Indicates the period of time (in seconds) between health monitoring pings sent to the worker process(es) serving this application pool. The value must be a string representation of a TimeSpan value. The valid range (in seconds) is 1 to 4294967.
dsc_pingresponsetime
Data type: Optional[String]
Indicates the maximum time (in seconds) that a worker process is given to respond to a health monitoring ping. The value must be a string representation of a TimeSpan value. The valid range (in seconds) is 1 to 4294967.
dsc_queuelength
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum number of requests that HTTP.sys will queue for the application pool. The value must be a valid integer between 10 and 65535.
dsc_rapidfailprotection
Data type: Optional[Boolean]
Indicates whether rapid-fail protection is enabled. If true, the application pool is shut down if there are a specified number of worker process crashes within a specified time period.
dsc_rapidfailprotectioninterval
Data type: Optional[String]
Indicates the time interval (in minutes) during which the specified number of worker process crashes must occur before the application pool is shut down by rapid-fail protection. The value must be a string representation of a TimeSpan value. The valid range (in minutes) is 1 to 144000.
dsc_rapidfailprotectionmaxcrashes
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum number of worker process crashes permitted before the application pool is shut down by rapid-fail protection. The value must be a valid integer between 0 and 2147483647.
dsc_restartmemorylimit
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum amount of virtual memory (in KB) a worker process can consume before causing the application pool to recycle. The value must be a valid integer between 0 and 4294967295. A value of 0 means there is no limit.
dsc_restartprivatememorylimit
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum amount of private memory (in KB) a worker process can consume before causing the application pool to recycle. The value must be a valid integer between 0 and 4294967295. A value of 0 means there is no limit.
dsc_restartrequestslimit
Data type: Optional[Integer[0, 4294967295]]
Indicates the maximum number of requests the application pool can process before it is recycled. The value must be a valid integer between 0 and 4294967295. A value of 0 means the application pool can process an unlimited number of requests.
dsc_restartschedule
Data type: Optional[Array[String]]
Indicates a set of specific local times, in 24 hour format, when the application pool is recycled. The value must be an array of string representations of TimeSpan values. TimeSpan values must be between 00:00:00 and 23:59:59 seconds inclusive, with a granularity of 60 seconds. Setting the value of this property to '' disables the schedule.
dsc_restarttimelimit
Data type: Optional[String]
Indicates the period of time (in minutes) after which the application pool will recycle. The value must be a string representation of a TimeSpan value. The valid range (in minutes) is 0 to 432000. A value of 0 means the application pool does not recycle on a regular interval.
dsc_setprofileenvironment
Data type: Optional[Boolean]
Indicates the environment to be set based on the user profile for the new process.
dsc_shutdowntimelimit
Data type: Optional[String]
Indicates the period of time (in seconds) a worker process is given to finish processing requests and shut down. The value must be a string representation of a TimeSpan value. The valid range (in seconds) is 1 to 4294967.
dsc_startmode
Data type: Optional[Enum['OnDemand', 'ondemand', 'AlwaysRunning', 'alwaysrunning']]
Indicates the startup type for the application pool. The values that are allowed for this property are: OnDemand, AlwaysRunning.
dsc_startuptimelimit
Data type: Optional[String]
Indicates the period of time (in seconds) a worker process is given to start up and initialize. The value must be a string representation of a TimeSpan value. The valid range (in seconds) is 1 to 4294967.
dsc_state
Data type: Optional[Enum['Started', 'started', 'Stopped', 'stopped']]
Indicates the state of the application pool. The values that are allowed for this property are: Started, Stopped.
Parameters
The following parameters are available in the dsc_webapppool
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Indicates the custom account crededentials. This property is only valid when the identityType property is set to SpecificUser.
dsc_name
namevar
Data type: String
Indicates the application pool name. The value must contain between 1 and 64 characters.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webapppooldefaults
The DSC WebAppPoolDefaults resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webapppooldefaults
type.
dsc_identitytype
Data type: Optional[Enum['ApplicationPoolIdentity', 'applicationpoolidentity', 'LocalService', 'localservice', 'LocalSystem', 'localsystem', 'NetworkService', 'networkservice']]
applicationPools/applicationPoolDefaults/processModel/identityType
dsc_managedruntimeversion
Data type: Optional[Enum['', 'v2.0', 'v4.0']]
applicationPools/applicationPoolDefaults/managedRuntimeVersion
Parameters
The following parameters are available in the dsc_webapppooldefaults
type.
dsc_issingleinstance
namevar
Data type: Enum['Yes', 'yes']
Specifies the resource is a single instance, the value must be 'Yes'
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webconfigproperty
The DSC WebConfigProperty resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webconfigproperty
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Indicates if the property and value should be present or absent. Defaults to Present.
dsc_value
Data type: Optional[String]
Value of the property to update.
Parameters
The following parameters are available in the dsc_webconfigproperty
type.
dsc_filter
dsc_propertyname
dsc_psdscrunascredential
dsc_timeout
dsc_websitepath
name
validation_mode
dsc_filter
namevar
Data type: String
Filter used to locate property to update.
dsc_propertyname
namevar
Data type: String
Name of the property to update.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_websitepath
namevar
Data type: String
Path to website location (IIS or WebAdministration format).
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webconfigpropertycollection
The DSC WebConfigPropertyCollection resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webconfigpropertycollection
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Indicates if the property and value of the property collection item should be present or absent. Defaults to Present.
dsc_itempropertyvalue
Data type: Optional[String]
Value of the property of the property collection item to update.
Parameters
The following parameters are available in the dsc_webconfigpropertycollection
type.
dsc_collectionname
dsc_filter
dsc_itemkeyname
dsc_itemkeyvalue
dsc_itemname
dsc_itempropertyname
dsc_psdscrunascredential
dsc_timeout
dsc_websitepath
name
validation_mode
dsc_collectionname
namevar
Data type: String
Name of the property collection to update.
dsc_filter
namevar
Data type: String
Filter used to locate property collection to update.
dsc_itemkeyname
namevar
Data type: String
Name of the key of the property collection item to update.
dsc_itemkeyvalue
namevar
Data type: String
Value of the key of the property collection item to update.
dsc_itemname
namevar
Data type: String
Name of the property collection item to update.
dsc_itempropertyname
namevar
Data type: String
Name of the property of the property collection item to update.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_websitepath
namevar
Data type: String
Path to website location (IIS or WebAdministration format).
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_website
The DSC WebSite resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_website
type.
dsc_applicationpool
Data type: Optional[String]
The name of the websiteâ??s application pool.
dsc_applicationtype
Data type: Optional[String]
Adds a AutostartProvider ApplicationType
dsc_authenticationinfo
Data type: Optional[Struct[{ basic => Optional[Boolean], anonymous => Optional[Boolean], digest => Optional[Boolean], windows => Optional[Boolean] }]]
Hashtable containing authentication information (Anonymous, Basic, Digest, Windows)
dsc_bindinginfo
Data type: Optional[Array[Struct[{ sslflags => Optional[Enum['0', '1', '2', '3']], certificatestorename => Optional[Enum['My', 'my', 'WebHosting', 'webhosting']], certificatethumbprint => Optional[String], hostname => Optional[String], certificatesubject => Optional[String], bindinginformation => Optional[String], port => Optional[Integer[0, 65535]], ipaddress => Optional[String], protocol => Enum['http', 'https', 'msmq.formatname', 'net.msmq', 'net.pipe', 'net.tcp'] }]]]
Website's binding information in the form of an array of embedded instances of the DSC_WebBindingInformation CIM class.
dsc_defaultpage
Data type: Optional[Array[String]]
One or more names of files that will be set as Default Documents for this website.
dsc_enabledprotocols
Data type: Optional[String]
The protocols that are enabled for the website.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Ensures that the website is Present or Absent. Defaults to Present.
dsc_logcustomfields
Data type: Optional[Array[Struct[{ sourcetype => Optional[Enum['RequestHeader', 'requestheader', 'ResponseHeader', 'responseheader', 'ServerVariable', 'servervariable']], sourcename => Optional[String], ensure => Optional[Enum['Present', 'present', 'Absent', 'absent']], logfieldname => Optional[String] }]]]
Custom logging field information in the form of an array of embedded instances of DSC_LogCustomFieldInformation CIM class
dsc_logflags
Data type: Optional[Array[Enum['Date', 'date', 'Time', 'time', 'ClientIP', 'clientip', 'UserName', 'username', 'SiteName', 'sitename', 'ComputerName', 'computername', 'ServerIP', 'serverip', 'Method', 'method', 'UriStem', 'uristem', 'UriQuery', 'uriquery', 'HttpStatus', 'httpstatus', 'Win32Status', 'win32status', 'BytesSent', 'bytessent', 'BytesRecv', 'bytesrecv', 'TimeTaken', 'timetaken', 'ServerPort', 'serverport', 'UserAgent', 'useragent', 'Cookie', 'cookie', 'Referer', 'referer', 'ProtocolVersion', 'protocolversion', 'Host', 'host', 'HttpSubStatus', 'httpsubstatus']]]
The W3C logging fields
dsc_logformat
Data type: Optional[Enum['IIS', 'iis', 'W3C', 'w3c', 'NCSA', 'ncsa']]
Format of the Logfiles. Only W3C supports LogFlags
dsc_loglocaltimerollover
Data type: Optional[Boolean]
Use the localtime for file naming and rollover
dsc_logpath
Data type: Optional[String]
The directory to be used for logfiles
dsc_logperiod
Data type: Optional[Enum['Hourly', 'hourly', 'Daily', 'daily', 'Weekly', 'weekly', 'Monthly', 'monthly', 'MaxSize', 'maxsize']]
How often the log file should rollover
dsc_logtargetw3c
Data type: Optional[Enum['File', 'file', 'ETW', 'etw', 'File,ETW', 'file,etw']]
Specifies whether IIS will use Event Tracing or file logging
dsc_logtruncatesize
Data type: Optional[String]
How large the file should be before it is truncated
dsc_physicalpath
Data type: Optional[String]
The path to the files that compose the website.
dsc_preloadenabled
Data type: Optional[Boolean]
When set to $true this will allow WebSite to automatically start without a request
dsc_serverautostart
Data type: Optional[Boolean]
When set to $true this will enable Autostart on a Website
dsc_serviceautostartenabled
Data type: Optional[Boolean]
When set to $true
this will enable application Autostart (application initalization without an initial request) on a Website
dsc_serviceautostartprovider
Data type: Optional[String]
Adds a AutostartProvider
dsc_siteid
Data type: Optional[Integer[0, 4294967295]]
Optional. The desired IIS site Id for the website.
dsc_state
Data type: Optional[Enum['Started', 'started', 'Stopped', 'stopped']]
The state of the website.
Parameters
The following parameters are available in the dsc_website
type.
dsc_name
namevar
Data type: String
The desired name of the website.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_websitedefaults
The DSC WebSiteDefaults resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_websitedefaults
type.
dsc_allowsubdirconfig
Data type: Optional[Enum['true', 'false']]
sites/virtualDirectoryDefaults/allowSubDirConfig
dsc_defaultapplicationpool
Data type: Optional[String]
sites/applicationDefaults/applicationPool
dsc_logdirectory
Data type: Optional[String]
sites/siteDefaults/logFile/directory
dsc_logformat
Data type: Optional[Enum['W3C', 'w3c', 'IIS', 'iis', 'NCSA', 'ncsa', 'Custom', 'custom']]
sites/siteDefaults/logFile/logFormat
dsc_tracelogdirectory
Data type: Optional[String]
sites/siteDefaults/traceFailedRequestsLogging/directory
Parameters
The following parameters are available in the dsc_websitedefaults
type.
dsc_issingleinstance
namevar
Data type: Enum['Yes', 'yes']
Specifies the resource is a single instance, the value must be 'Yes'
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_webvirtualdirectory
The DSC WebVirtualDirectory resource type. Automatically generated from version 4.2.1
Properties
The following properties are available in the dsc_webvirtualdirectory
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Whether virtual directory should be present or absent
dsc_physicalpath
Data type: String
Physical path for the virtual directory
Parameters
The following parameters are available in the dsc_webvirtualdirectory
type.
dsc_credential
dsc_name
dsc_psdscrunascredential
dsc_timeout
dsc_webapplication
dsc_website
name
validation_mode
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Credential to use for accessing the virtual directory
dsc_name
namevar
Data type: String
Name of virtual directory
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_webapplication
namevar
Data type: String
Web application name for the virtual directory
dsc_website
namevar
Data type: String
Name of website with which Web Application is associated
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
[4.2.1] - 2024-11-13
Added
- WebConfigPropertyCollection
- Allowed different property collection key types to be added beyond the default.
- Allowed control over single item property collection key types, including examples - fixes (issue #379), (issue #631).
Changed
- IisModule
- Set default for Ensure property to Present.
- IisMimeTypeMapping
- Set default for Ensure property to Present.
Fixed
- WebAdministrationDsc
- Fixed CertificateStoreName default value from
MY
toMy
(issue #642)
- Fixed CertificateStoreName default value from
Removed
- Removed outdated resources documentation from README.md.
Dependencies
- puppetlabs/pwshlib (>= 1.2.0 < 2.0.0)