Azure Storage Operations: Difference between revisions
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Azure_Operations#Subjects|Azure Operations]] | * [[Azure_Operations#Subjects|Azure Operations]] | ||
* [[Azure Storage Concepts]] | |||
=Azure Files Operations= | |||
{{Internal|Azure Files Operations|Azure Files Operations}} | |||
=Storage Account Operations= | |||
==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> | |||
The storage account name must be between 3 and 24 characters and use numbers and lower case letters only. The name must also unique across the entire Azure, so URLs like these can exist: https://<storage-account-name>.file.core.windows.net/ |
Latest revision as of 23:28, 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
The storage account name must be between 3 and 24 characters and use numbers and lower case letters only. The name must also unique across the entire Azure, so URLs like these can exist: https://<storage-account-name>.file.core.windows.net/