Update Deployment parameter to be optional with a default value

This commit is contained in:
Torsten Brendgen
2026-06-27 00:40:27 +02:00
parent 0afc9dd1e2
commit 735bfc9f61

View File

@@ -4,9 +4,9 @@ function Merge-DSCConfigurationData {
[Parameter(Mandatory=$true)] [Parameter(Mandatory=$true)]
[System.Collections.Hashtable] [System.Collections.Hashtable]
$Template, $Template,
[Parameter(Mandatory=$true)] [Parameter(Mandatory=$false)]
[System.Collections.Hashtable] [System.Collections.Hashtable]
$Deployment, $Deployment = @{},
[Parameter(Mandatory=$false)] [Parameter(Mandatory=$false)]
[System.Collections.Hashtable] [System.Collections.Hashtable]
$Output $Output