Azure Storage Operations: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
=Storage Account Operations= | =Storage Account Operations= | ||
==Create Storage Account== | ==Create Storage Account== | ||
<syntaxhighlight lang='bash'> | |||
az storage account create \ | |||
--name <storage-account-name> \ | |||
--resource-group <resource-group-name> \ | |||
--kind StorageV2 \ | |||
--sku Standard_LRS | |||
</syntaxhighlight> |
Revision as of 20:13, 25 November 2020
Internal
Azure Files Operations
Storage Account Operations
Create Storage Account
az storage account create \
--name <storage-account-name> \
--resource-group <resource-group-name> \
--kind StorageV2 \
--sku Standard_LRS