Exercise 2 – creating an Azure Service Bus namespace and a queue
In this exercise, we will perform the following actions:
- Create an Azure Service Bus namespace
- Create an Azure Service Bus queue
The queues can be created using the interactive interface of the Azure portal, using the command line via PowerShell or Azure CLI, or using Resource Manager templates. We will look at only the first two methods here: Azure Portal and Azure CLI.
Using the Azure portal
Let’s open the Azure portal and select All services. In the Integration category, we can find the Service Bus resource:
Figure 3.16 – Creating a Service Bus using the Azure portal
After filling in the configuration required to create a namespace that will include after the queue, we click on + Create or select Create service bus namespace:
Figure 3.17 – Creating a namespace using the Azure portal
In the Basics tab, we...