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
Running the script in our our simple QA environment with only 507 items the generated excel report was just black.
Running from Windows in powershell or powershell_ise azure-cli, 2.59.0 Resource-Graph Extension Version: 1.0.0
In script AzureResourceInventory.ps1 the following changes were required :
line 636 changed from
$EnvSizeNum = $EnvSize.data.'count_' # Original
to
$EnvSizeNum = $EnvSize.'count_'
then line 650 :
$Global:Resources += $Resource.data # Original
to
$Global:Resources += $Resource
The text was updated successfully, but these errors were encountered:
Running the script in our our simple QA environment with only 507 items the generated excel report was just black.
Running from Windows in powershell or powershell_ise
azure-cli, 2.59.0
Resource-Graph Extension Version: 1.0.0
In script AzureResourceInventory.ps1 the following changes were required :
line 636 changed from
$EnvSizeNum = $EnvSize.data.'count_' # Original
to
$EnvSizeNum = $EnvSize.'count_'
then line 650 :
$Global:Resources += $Resource.data # Original
to
$Global:Resources += $Resource
The text was updated successfully, but these errors were encountered: