Complete the code to create a storage account with the correct SKU.
az storage account create --name mystorageaccount --resource-group myResourceGroup --location eastus --sku [1]The Standard_LRS SKU is commonly used for general purpose storage accounts and is valid for creation.
Complete the code to specify the kind of storage account as BlobStorage.
az storage account create --name mystorageaccount --resource-group myResourceGroup --location eastus --sku Standard_LRS --kind [1]The BlobStorage kind creates a storage account optimized for storing blobs.
Fix the error in the command to enable HTTPS traffic only.
az storage account create --name mystorageaccount --resource-group myResourceGroup --location eastus --sku Standard_LRS --https-only [1]The --https-only flag expects a boolean value true or false. Use true to enable HTTPS traffic only.
Fill both blanks to create a storage account with access tier Hot and enable hierarchical namespace.
az storage account create --name mystorageaccount --resource-group myResourceGroup --location eastus --sku Standard_LRS --access-tier [1] --[2]
The --access-tier Hot sets the access tier to Hot. The --enable-hierarchical-namespace flag enables the hierarchical namespace feature.
Fill all three blanks to create a storage account with name, resource group, and location variables.
az storage account create --name [1] --resource-group [2] --location [3] --sku Standard_LRS
Use storageAccount for the storage account name, resourceGroupName for the resource group, and locationName for the location variable.