Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kamiyn/05d2abb86f448a47f65354b9f64ecdb4 to your computer and use it in GitHub Desktop.
Save kamiyn/05d2abb86f448a47f65354b9f64ecdb4 to your computer and use it in GitHub Desktop.
$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