Level 1
0 / 100 XP

Create a Storage Blob

In this lesson, you will learn how to create a storage account, upload a blob (file), and manage access to the blob in Azure. You will also learn how to clean up resources when you're done.

Task 1: Create a Storage Account

  1. Sign in to Azure Portal :
    • Navigate to Azure Portal and sign in with your credentials.
  2. Create a New Resource :
    • Select Create a resource.
  3. Select Storage Account :
    • Under Categories , select Storage.
    • Under Storage account , select Create.
      AZ-900 Create Storage Account
  4. Configure Storage Account Basics :
    • On the Basics tab, fill in the following:
      • Subscription : Azure subscription 1 (or whatever yours is)
      • Resource group : FreeResourcesRG
      • Storage account name : Create a unique storage account name like mytrainingstorage1
      • Region : Leave default
      • Performance : Standard
      • Redundancy : Locally redundant storage (LRS)
  5. Configure Advanced Settings :
    • On the Advanced tab, check Allow enabling anonymous access on individual containers.
  6. Review and Create :
    • Select Review + create to validate the configuration.
    • Once validated, select Create.
      AZ-900 Create a Storage Account
    • Wait for the notification that the account was successfully created.
    • Select Go to resource.
      AZ-900 Go to Storage Account Resource

Task 2: Work with Blob Storage

  1. Create a Blob Container :
    • Under Data storage , select Containers.
    • Sel…