You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On line 83 it will break out of the foreach loop if a resource group does not contain any resources, which means that I will skip rest of whats in $Targets.
Example:
Let's say you have 4 resource groups.
my-rg-1 (contains resources)
my-rg-2 (is empty)
my-rg-3 (contains resources)
my-rg-4 (contains resource)
According to the script it will not check my-rg-3 and my-rg-4, since my-rg-2 is empty.
I think this should be a continue statement instead.
The text was updated successfully, but these errors were encountered:
I think I found a bug in
ConvertFrom-ARM.ps1
.On line 83 it will break out of the foreach loop if a resource group does not contain any resources, which means that I will skip rest of whats in
$Targets
.Example:
Let's say you have 4 resource groups.
According to the script it will not check
my-rg-3
andmy-rg-4
, sincemy-rg-2
is empty.I think this should be a
continue
statement instead.The text was updated successfully, but these errors were encountered: