Moving on to the next step in building out a Microsoft Azure-based SharePoint 2019 environment.  In this post, we are going to build storage resources for Azure SharePoint 2019.  In order to allow your VMs to do anything you are going to need something to store the data, apps, and OS on.  For this, we need to deploy some storage resources to the environment.  What is great compared to my previous series is, in this case, we can build multiple disks to pull from.  The data isn’t going to reside on just a single disk as it did then.  Each of the three main components should have their own account (AD, SharePoint, SQL).

This is a multi-part series.  You can see what is coming and review other posts in the series by clicking one of the following links:

Build Storage Resources for Azure SharePoint 2019

Storage Accounts

Before we can actually create our storage devices we need an account to control the functionality.  Specifically, we will create what is known as a “general-purpose v2 storage account”.  As the name implies the account isn’t just for a particular type of storage but will control access to blob, files, disks, etc.  To create the account:

  1. Login to your Azure Portal (https://portal.azure.com)
  2. On the left-hand side click on All Resouces
  3. Click on “+ Add”
  4. Select the Storage category and then click on Storage Account

Build Storage Resources for Azure SharePoint 2019 - Create Azure Storage Account

  1. Select the subscription and the Resource group that has been used so far.
  2. At the storage account name, you have to put in a 3-24 alphanumeric name that is unique across ALL OF AZURE.
  3. Select the region you wish to place the disk in.
  4. Standard performance is fine for what is required here.
  5. Account kind will be Storage V2.
  6. Replication is your choice.  I selected Locally-redundant storage (LRS) as this is just a dev instance for me.
  7. Access Tier is hot.  Hot tiers are more expensive for heavy storage, but since I am not storing a lot here the cost won’t be too bad
  8. Click Next: Advanced

Build Storage Resources for Azure SharePoint 2019 - Basic Storage Account Config

  1. Leave the Advanced page as is.
  2. Click on Review + Create
  3. Review the configuration.  If it looks good and passes validation (automatically checked), click on Create.
  4. Repeat these steps twice.  You will want storage accounts for your SQL Server and AD as well.

You will then be redirected to a page with basic information of the storage account and the expected duration of the creation time.  You have now created a storage account that will hold the data for your installation.  In the next post, we’ll start building out the Active Directory for the environment.

Thanks for reading!!