Building an Event Storage
Explore how to create and configure an Azure Queue Storage Account for event storage in an event-driven architecture. Understand the setup of resource groups, creation of a storage account, and how to add multiple queues using PowerShell commands and the Azure portal.
We'll cover the following...
Creating a Queue Storage Account
Our event storage will be based on a Queue Storage Account. First, we will create a storage account. We will then add this storage account to the middleware-eg-rg resource as discussed in the previous lesson.
CLI
We will create the middleware-eg-rg resource group with the command we discussed in the previous lesson. If you have already created this resource group, you may skip this step.
This is our command to create a resource group:
New-AzResourceGroup -Name middleware-eg-rg -Location westeurope
Next, to create a storage account, we will use the New-AzStorageAccount command with ...