Uploading Metadata to Azure Storage

The metadata you retrieved can be shared with the Solid team through a blind Azure Storage.

Once you are provided a SAS URL for Azure Storage, you can upload all of the metadata collected using the various means described below. This Azure Storage is "blind", meaning that once you upload the content there, you cannot see it any more. Only Solid personnel will have access to it through the secure means described in Solid's SOC 2 Type II report.

Prerequisites

  1. A SAS URL, provided by Solid to you.
  2. The collection of all required metadata, per list provided to you by Solid.

Option 1 - Azure Storage Explorer (GUI)

Download Azure Storage Explorer

  1. Visit the Azure Storage Explorer official page.
  2. Select the appropriate version for your operating system (Windows, macOS, or Linux).
  3. Download and install the application by following the installer prompts.

Connect to a Blob Container

  1. Launch Azure Storage Explorer.
  2. In the Explorer panel, click the Connect icon or use the menu to select File > Connect to Azure Resources.
  1. Choose the Shared Access Signature (SAS) URI option.
  2. Paste the SAS connection string provided by Solid.
  3. Click Next, confirm the connection details, and then click Connect.
  4. The connected storage account and its containers will appear in the Explorer panel. You can upload filter into the Blob container.

Option 2 - AzCopy (Command-Line Tool)

  1. Download and install AzCopy for your operating system.
  2. Use the Copy CLI command:
azcopy copy "<local_file_path_or_folder>" "<blob_sas_url_provided_by_Solid>"

Option 3 - Azure CLI (Command-Line Tool)

az storage blob upload \ 
--sas-token "<blob_sas_url_provided_by_Solid>" \ 
--account-name "mystorage" \ 
--container-name "mycontainer" \ 
--name "uploaded_file.txt" \ 
--file "/home/user/data/file.txt"