DEV Community

Cover image for Provide Shared File Storage For The Company Offices
Blessing
Blessing

Posted on

Provide Shared File Storage For The Company Offices

The company is geographically dispersed with offices in different locations. These offices need a way to share files and disseminate information. For example, the Finance department needs to confirm cost information for auditing and compliance. This file shares should be easy to access and load without delay. Some content should only be accessed from selected corporate virtual networks.

Create and configure a storage account for Azure Files.

Create a storage account for the finance department’s shared files

Step 1

  • In the portal, search for and select Storage accounts.
  • Select + Create.
  • For Resource group select Create new. Give your resource group a name and select OK to save your changes.
  • Provide a Storage account name. Ensure the name meets the naming requirements.
  • Set the Performance to Premium.
  • Set the Premium account type to File shares.
  • Set the Redundancy to Zone-redundant storage.
  • Select Review and then Create the storage account.
  • Wait for the resource to deploy.
  • Select Go to resource.

step1

Create and configure a file share with directory.

Create a file share for the corporate office. Learn more about Azure File tiers.

step

  • In the storage account, in the Data storage section, select the File shares blade.

step 1

  • Select + File share and provide a Name.
  • Review the other options, but take the defaults.
  • Select Create

step 1

Add a directory to the file share for the finance department. For future testing, upload a file.

step 2

  • Select your file share and select + Add directory.
  • Name the new directory finance.
  • Select Browse and then select the finance directory.
  • Notice you can Add directory to further organize your file share.
  • Upload a file of your choice.

step 1

Configure and test snapshots.

Similar to blob storage, you need to protect against accidental deletion of files. You decide to use snapshots.

Step 1

  • Select your file share.
  • In the Operations section, select the Snapshots blade.
  • Select + Add snapshot. The comment is optional. Select OK.

step 1

  • Select your snapshot and verify your file directory and uploaded file are included.

step 2

Practice using snapshots to restore a file.

Step 1

  • Return to your file share.
  • Browse to your file directory.
  • Locate your uploaded file and in the Properties pane select Delete. Select Yes to confirm the deletion.

step 1

  • Select the Snapshots blade and then select your snapshot.

s2

  • Navigate to the file you want to restore,
  • Select the file and the select Restore.

s3

  • Provide a Restored file name.

s4

  • Verify your file directory has the restored file.

s5

Configure restricting storage access to selected virtual networks.

This tasks in this section require a virtual network with subnet. In a production environment these resources would already be created.

step 1

Search for and select Virtual networks.

step 1

  • Select Create. Select your resource group. and give the virtual network a name.
  • Take the defaults for other parameters, select Review + create, and then Create.
  • Wait for the resource to deploy.

s2

  • Select Go to resource.
  • In the Settings section, select the Subnets blade.
  • Select the default subnet.
  • in the Service endpoints section choose Microsoft.Storage in the Services drop-down.
  • Do not make any other changes.
  • Be sure to Save your changes.

s3

The storage account should only be accessed from the virtual network you just created.

step 1

  • Return to your files storage account.
  • In the Security + networking section, select the Networking blade
  • select your virtual network and subnet, select Add.
    Be sure to Save your changes.
    step 1

  • Select the Storage browser and navigate to your file share.

  • Verify the message not authorized to perform this operation. You are not connecting from the virtual network.

s2

That's all for this article.

Top comments (0)