Skip to content

Commit

Permalink
3.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudio-Merola committed Feb 15, 2024
1 parent a6cc512 commit 34d3a98
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions AzureResourceInventory.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# #
# * Azure Resource Inventory ( ARI ) Report Generator * #
# #
# Version: 3.1.12 #
# Version: 3.1.13 #
# #
# Date: 01/19/2024 #
# Date: 02/15/2024 #
# #
##########################################################################################
<#
Expand Down Expand Up @@ -442,7 +442,7 @@ param ($TenantID,
}
}
$Global:DefaultPath = if($ReportDir) {$ReportDir} else {"C:\AzureResourceInventory\"}
$Global:DiagramCache = if($ReportDir) {$ReportDir} else {"C:\AzureResourceInventory\DiagramCache\"}
$Global:DiagramCache = if($ReportDir) {($ReportDir+'DiagramCache\')} else {"C:\AzureResourceInventory\DiagramCache\"}
LoginSession
}
}
Expand Down
6 changes: 4 additions & 2 deletions Extras/DrawIODiagram.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ https://github.com/microsoft/ARI/Extras/DrawIODiagram.ps1
This powershell Module is part of Azure Resource Inventory (ARI)
.NOTES
Version: 3.1.0
Version: 3.1.13
First Release Date: 19th November, 2020
Authors: Claudio Merola and Renato Gregio
Expand All @@ -23,7 +23,9 @@ $Global:DiagramCache = $DiagramCache

$Global:FullEnvironment = $FullEnvironment

$Global:Logfile = 'C:\AzureResourceInventory\DiagramLogFile.log'
$TempPath = $DiagramCache.split("DiagramCache\")[0]

$Global:Logfile = ($TempPath+'DiagramLogFile.log')

Function Network {
Param($Subscriptions,$Resources,$Advisories,$DiagramCache,$FullEnvironment,$DDFile,$XMLFiles)
Expand Down

0 comments on commit 34d3a98

Please sign in to comment.