Closed spaelling closed 4 years ago
ConvertTo-SplatExpression does not include all properties in below code, only the first 3 are included
ConvertTo-SplatExpression
New-AzResourceGroupDeployment -Name 'DeploySolutions' -TemplateFile 'InstallSolutionsForVMInsights.json' -ResourceGroupName $ResourceGroupName -WorkspaceName $WorkspaceName -WorkspaceLocation $WorkspaceLocation
results in
$newAzResourceGroupDeploymentSplat = @{ TemplateFile = 'InstallSolutionsForVMInsights.json' Name = 'DeploySolutions' ResourceGroupName = $ResourceGroupName } New-AzResourceGroupDeployment @newAzResourceGroupDeploymentSplat
changing the order of parameters makes no difference or nothing happens.
Fixed with v1.0.0-beta1
Install-Module EditorServicesCommandSuite -Scope CurrentUser -AllowPrerelease -Force
ConvertTo-SplatExpression
does not include all properties in below code, only the first 3 are includedresults in
changing the order of parameters makes no difference or nothing happens.