Skip to content

Commit

Permalink
Remove SAS token from output when uploading to Azure Storage
Browse files Browse the repository at this point in the history
  • Loading branch information
jpawlowski committed Jun 4, 2024
1 parent b27f3f8 commit 9c330d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Runbooks/Common_0000__Write-CsvOutput.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<#PSScriptInfo
.VERSION 1.0.0
.VERSION 1.0.1
.GUID 7086a21d-f021-4f05-99a7-ec2a6de6f749
.AUTHOR Julian Pawlowski
.COMPANYNAME Workoho GmbH
Expand All @@ -12,8 +12,8 @@
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
Version 1.0.0 (2024-05-30)
- Initial release.
Version 1.0.1 (2024-06-04)
- Remove SAS token from output when uploading to Azure Storage
#>

<#
Expand Down Expand Up @@ -182,7 +182,7 @@ try {
throw "Invalid storage type '$storageType'. The storage type must be 'blob' or 'file."
}

Write-Output "CSV file uploaded to $StorageUri"
Write-Output "CSV file uploaded to $($uri.GetLeftPart([System.UriPartial]::Path))"
}
else {
Write-Output $(
Expand Down

0 comments on commit 9c330d5

Please sign in to comment.