# Change these four parameters as needed export ACI_PERS_RESOURCE_GROUP=murmel export ACI_PERS_STORAGE_ACCOUNT_NAME=steffen$RANDOM export ACI_PERS_LOCATION=northeurope export ACI_PERS_SHARE_NAME=murmelshare # Create the storage account with the parameters az storage account create \ --resource-group $ACI_PERS_RESOURCE_GROUP \ --name $ACI_PERS_STORAGE_ACCOUNT_NAME \ --location $ACI_PERS_LOCATION \ --sku Standard_LRS # Create the file share az storage share create \ --name $ACI_PERS_SHARE_NAME \ --account-name $ACI_PERS_STORAGE_ACCOUNT_NAME