Created
May 20, 2016 20:08
-
-
Save gregjhogan/30b1dc387948c2b278c199dfed59802b to your computer and use it in GitHub Desktop.
upload blob to storage account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $resourceGroup = '' | |
| $storageAccount = '' | |
| $file = '' | |
| $container = '' | |
| $blob = '' | |
| $context = (Get-AzureRmStorageAccount -ResourceGroupName $resourceGroup -Name $storageAccount).Context | |
| Set-AzureStorageBlobContent -File $file -Container $container -Blob $blob -Context $context -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment