Created
May 2, 2016 03:01
-
-
Save kamiyn/05d2abb86f448a47f65354b9f64ecdb4 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
$rg = "Default-Storage-JapanEast" | |
$name = "kamiynsamplecoolstorage" | |
Login-AzureRmAccount | |
# ResourceGroup はすでにある前提 | |
New-AzureRmResource -ResourceGroupName $rg -ResourceType Microsoft.Storage/storageAccounts ` | |
-ResourceName $name -ApiVersion 2016-01-01 -Kind BlobStorage ` | |
-Location JapanEast ` | |
-PropertyObject @{accessTier = "Cool"; } -sku @{name = "Standard_LRS"} -Force | |
Enter file contents here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment