We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efb750f commit c387714Copy full SHA for c387714
README.md
@@ -44,6 +44,10 @@ $additionalParams = New-Object -TypeName Hashtable;
44
45
$params = Get-Content $ArmParametersPath -Raw | ConvertFrom-Json;
46
47
+if ($params.parameters -ne $null) {
48
+ $params = $params.parameters
49
+}
50
+
51
foreach($p in $params | Get-Member -MemberType *Property)
52
{
53
$additionalParams.Add($p.Name, $params.$($p.Name).value);
0 commit comments