This example assumes you have previously completed the following examples:
First, create the environment variable used for our message queue using the command line below:
export SERVICE_BUS_QUEUE=service-bus-queue
Then, create the Azure Service Bus using the following command line:
az servicebus queue create \
--resource-group $RESOURCE_GROUP \
--namespace-name $SERVICE_BUS \
--name $SERVICE_BUS_QUEUE
Do NOT forget to remove the resources once you are done running the example.
1m