mirror of https://github.com/dapr/samples.git
18 lines
758 B
Bash
18 lines
758 B
Bash
resourceGroupName="<resource-group-name>"
|
|
namespaceName="<service-bus-namespace-name>"
|
|
location="<location>"
|
|
|
|
az servicebus namespace create \
|
|
--name $namespaceName \
|
|
--resource-group $resourceGroupName \
|
|
--location $location \
|
|
--sku Standard
|
|
|
|
# Create topic
|
|
az servicebus topic create --name batchreceived \
|
|
--namespace-name $namespaceName \
|
|
--resource-group $resourceGroupName
|
|
|
|
# Get the connection string for the namespace
|
|
connectionString=$(az servicebus namespace authorization-rule keys list --resource-group $resourceGroupName --namespace-name $namespaceName --name RootManageSharedAccessKey --query primaryConnectionString --output tsv)
|
|
echo "Connection String:" $connectionString |