Skip to content

Latest commit

 

History

History
72 lines (44 loc) · 3.84 KB

File metadata and controls

72 lines (44 loc) · 3.84 KB

Step 2: Set Up Azure Blob Storage

Costa Rica

GitHub Cloud2BR OSS - Learning Hub

Last updated: 2026-04-07


Centered Image

Create a Storage Account:

An Azure Storage Account provides a unique namespace in Azure for your data, allowing you to store and manage various types of data such as blobs, files, queues, and tables. It serves as the foundation for all Azure Storage services, ensuring high availability, scalability, and security for your data.

  • In the Azure portal, navigate to your Resource Group.

  • Click + Create.

    image
  • Search for Storage Account.

    image
  • Select the Resource Group you created.

  • Enter a Storage Account name (e.g., storagefileautomationsum).

  • Choose the region and performance options, and click Next to continue.

    image
  • If you need to modify anything related to Security, Access protocols, Blob Storage Tier, you can do that in the Advanced tab.

    image
  • Regarding Networking, this example will cover Public access configuration. However, please ensure you review your privacy requirements and adjust network and access settings as necessary for your specific case.

    image
  • Click Review + create and then Create. Once is done, you'll be able to see it in your Resource Group.

    image

Create a Blob Container

A Blob Container is a logical grouping of blobs within an Azure Storage Account, similar to a directory in a file system. Containers help organize and manage blobs, which can be any type of unstructured data like text or binary data. Each container can store an unlimited number of blobs, and you must create a container before uploading any blobs.

Within the Storage Account, create a Blob Container to store your PDFs.

  • Go to your Storage Account.

  • Under Data storage, select Containers.

  • Click + Container.

  • Enter a name for the container (input, output) and set the public access level to Private.

  • Click Create.

    image

Allow storage account key access

If you plan to use access keys, please ensure that the setting "Allow storage account key access" is enabled. When this setting is disabled, any requests to the account authorized with Shared Key, including shared access signatures (SAS), will be denied. Click here to learn more

image
Total views

Refresh Date: 2026-04-07