we have one azure storage account which is network restricted. We are saving a file from the runbook but seems it is failing. Any thoughts?
$fileshare ='TestStorage'
#Map to the reports BLOB context
$storageContext = New-AzureStorageContext -StorageAccountName $storageAccount -StorageAccountKey $acctKey
$csvTable | Export-CSV $LogFileName -NoTypeInformation
#Copy the file to the storage account : For the .csv file
Set-AzureStorageFileContent –Share $fileshare –Source $LogFileName