DSCResources/DscTagging/DscTagging.schema.psm1
configuration DscTagging { param ( [Parameter(Mandatory = $true)] [System.Version] $Version, [Parameter(Mandatory = $true)] [string] $Environment, [Parameter()] [string] $NodeVersion, [Parameter()] [string] $NodeRole, [Parameter()] [boolean] $DisableGitCommitId = $false, [Parameter()] [string[]] $Layers ) Import-DscResource -ModuleName PSDesiredStateConfiguration Import-DscResource -ModuleName xPSDesiredStateConfiguration if ($DisableGitCommitId -ne $false) { $gitCommitId = git log -n 1 *>&1 $gitCommitId = if ($gitCommitId -like '*fatal*') { 'NoGitRepo' } else { $gitCommitId[0].Substring(7) } xRegistry DscGitCommitId { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'GitCommitId' ValueData = $gitCommitId ValueType = 'String' Ensure = 'Present' Force = $true } } xRegistry DscVersion { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'Version' ValueData = $Version ValueType = 'String' Ensure = 'Present' Force = $true } xRegistry DscEnvironment { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'Environment' ValueData = $Environment ValueType = 'String' Ensure = 'Present' Force = $true } xRegistry DscBuildDate { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'BuildDate' ValueData = [string](Get-Date) ValueType = 'String' Ensure = 'Present' Force = $true } xRegistry DscBuildNumber { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'BuildNumber' ValueData = "$($env:BHBuildNumber)" ValueType = 'String' Ensure = 'Present' Force = $true } if (-not [string]::IsNullOrWhiteSpace($NodeVersion)) { xRegistry DscNodeVersion { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'NodeVersion' ValueData = $NodeVersion ValueType = 'String' Ensure = 'Present' Force = $true } } if (-not [string]::IsNullOrWhiteSpace($NodeRole)) { xRegistry DscNodeRole { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'NodeRole' ValueData = $NodeRole ValueType = 'String' Ensure = 'Present' Force = $true } } if ($null -ne $Layers -and $Layers.Count -gt 0) { # check for duplicate layers $ht = @{} $Layers | ForEach-Object { $ht["$_"] += 1 } $ht.Keys | Where-Object { $ht["$_"] -gt 1 } | ForEach-Object { throw "ERROR: DscTagging: Duplicate layer '$_' found." } xRegistry DscModules { Key = 'HKEY_LOCAL_MACHINE\SOFTWARE\DscTagging' ValueName = 'Layers' ValueData = $Layers ValueType = 'MultiString' Ensure = 'Present' Force = $true } } } |