With the mentioned below procedure, you can create any Hot, Cool, or Archive blob storage
1) On Microsoft Azure Portal sign into your account:
2) On the left pane choose Browse and then choose Storage Accounts
Note: To take advantage of the Cool access tier, you should create a new storage account.
3) Click Add to create a new storage account:
4) Specify account Name and the Deployment model. Choose Blob storage account kind. Optionally configure Replication type and choose Cool access tier. Then choose a name for a new Resource group or choose an existing one. Click Create.
5) After a new account will be deployed, choose it from the list and then choose the Access Keys tab on the right pane:
METHOD # 2 - Powershell
To create a new storage account using PowerShell, follow these steps:
Connect to Azure.
Connect-AzAccount
New-AzResourceGroup -Name "MyResourceGroup" -Location "EastUS"
New-AzStorageAccount -ResourceGroupName "MyResourceGroup" ` -Name "mystorageaccount" ` -Location "EastUS" ` -SkuName "Standard_LRS" ` -Kind "StorageV2"
-AccessTier "Hot"
Comments
0 comments
Please sign in to leave a comment.