DSCResources/xIISMachineKey/Build.ps1

New-xDscResource -Name xIISMachineKey -Property @(


    New-xDscResourceProperty -Name SiteName -Type String -Attribute Key 

    New-xDscResourceProperty -Name Validation -Type String -Attribute Required -ValidateSet "MD5", "SHA1", "3DES", "AES", "HMACSHA256", "HMACSHA384", "HMACSHA512"
    New-xDscResourceProperty -Name Decryption -Type String -Attribute Required -ValidateSet "DES", "AES", "3DES", "Auto"
    New-xDscResourceProperty -Name DecryptionKey -Type String -Attribute Required 
    New-xDscResourceProperty -Name ValidationKey -Type String -Attribute Required 
)