Reputation: 5596
I have a .net core based console application that I am running on-prem. I was able to connect this application with Azure Service Bus using Shared Access Signature (connection string). Now I want to use Azure AD to authenticate and authorize my application.
I followed following link: https://learn.microsoft.com/en-us/azure/service-bus-messaging/authenticate-application
based on this link I completed following task:
Then the article says grant Permission for Service bus API
I am not sure how it works. How do I add API permission for Microsoft.ServiceBus?
Also the article talks as RBAC roles but does not show how can one assign role to a client ?
Upvotes: 0
Views: 346
Reputation: 5596
In order to allow application (service bus client) to access Service Bus follow these steps:
Upvotes: 2