Created
January 26, 2018 11:36
-
-
Save goyalmohit/2101ee9ed89e8ce0ce752d4fb04bcd36 to your computer and use it in GitHub Desktop.
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
# Create General Purpose Azure Storage Account | |
$strAccountName = "mobinotifysa" | |
$locationName = "east us" | |
$sku = "Standard_LRS" | |
New-AzureRmStorageAccount -ResourceGroupName $resourceGroupName -AccountName $strAccountName -SkuName $sku -Location $locationNam |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment