dscResources/Browser/Browser.schema.psm1

#region Header
using module ..\helper.psm1
using module PowerStig
#endregion Header
#region Composite
<#
    .SYNOPSIS
        A composite DSC resource to manage the Browser STIG settings
 
    .PARAMETER BrowserVersion
        The version of the Browser STIG to apply and monitor
 
    .PARAMETER StigVersion
        The version of the Windows Server DNS STIG to apply and/or monitor
 
    .PARAMETER Exception
        A hashtable of StigId=Value key pairs that are injected into the STIG data and applied to
        the target node. The title of STIG settings are tagged with the text ‘Exception’ to identify
        the exceptions to policy across the data center when you centralize DSC log collection.
 
    .PARAMETER OrgSettings
        The path to the xml file that contains the local organizations preferred settings for STIG
        items that have allowable ranges.
 
    .PARAMETER SkipRule
        The SkipRule Node is injected into the STIG data and applied to the taget node. The title
        of STIG settings are tagged with the text 'Skip' to identify the skips to policy across the
        data center when you centralize DSC log collection.
 
    .PARAMETER SkipRuleType
        All STIG rule IDs of the specified type are collected in an array and passed to the Skip-Rule
        function. Each rule follows the same process as the SkipRule parameter.
 
    .EXAMPLE
        In this example the latest version of the Windows firewall STIG is applied.
 
        Import-DscResource -ModuleName PowerStigDsc
 
        Node localhost
        {
            WindowsDnsServer DnsSettings
            {
                OsVersion = '2012R2'
                StigVersion = '1.7'
            }
        }
#>
Configuration Browser
{
    [CmdletBinding()]
    Param
    (
        [Parameter(Mandatory = $true)]
        [ValidateSet('IE11')]
        [string]
        $BrowserVersion,

        [Parameter()]
        [ValidateSet('1.13')]
        [ValidateNotNullOrEmpty()]
        [version]
        $StigVersion,

        [Parameter()]
        [ValidateNotNullOrEmpty()]
        [psobject]
        $Exception,
        
        [Parameter()]
        [psobject]
        $OrgSettings,

        [Parameter()]
        [psobject] 
        $SkipRule,

        [Parameter()]
        [psobject] 
        $SkipRuleType
    )

    #region Add required data to XML
    if ( $Exception ) {
        $exceptionsObject = [StigException]::ConvertFrom( $Exception )
    }
    else {
        $exceptionsObject = $null
    }

    if ( $SkipRule ) {
        $skipRuleObject = [SkippedRule]::ConvertFrom( $SkipRule )
    }
    else {
        $skipRuleObject = $null
    }

    if ( $SkipRuleType ) {
        $skipRuleTypeObject = [SkippedRuleType]::ConvertFrom( $SkipRuleType )
    }
    else {
        $skipRuleTypeObject = $null
    }

    if ( $OrgSettings ) {
        $orgSettingsObject = Get-OrgSettingsObject -OrgSettings $OrgSettings
    }
    else {
        $orgSettingsObject = $null
    }
    #endregion
    
    $technology = [Technology]::New( "Windows" )
    $technologyVersion = [TechnologyVersion]::New( 'All', $technology )
    $technologyRole = [TechnologyRole]::New( $BrowserVersion, $technologyVersion )
    $StigDataObject = [StigData]::New( $StigVersion, $orgSettingsObject, $technology, $technologyRole, $technologyVersion, $exceptionsObject , $skipRuleTypeObject, $skipRuleObject )

    $StigData = $StigDataObject.StigXml

    Import-DscResource -ModuleName PSDesiredStateConfiguration
    . "$resourcePath\windows.Registry.ps1"
    
}
#endregion Composite