0

I was able to create a service bus namespace, topic and subscription using the following example: https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-resource-manager-namespace-topic-with-rule I wanted to understand how is it possible to enable sessions on the Subscription while creating the resource through ARM template

harshitpthk
  • 4,058
  • 2
  • 24
  • 32

1 Answers1

1

There is a requiresSession property that can be set to true to enable sessions on a subscription.

You can refer the reference docs for the same.

PramodValavala
  • 6,026
  • 1
  • 11
  • 30