Reputation: 423
The TeamsFx tabs example will provision a new azure "App Registration" automatically when you deploy an app however the code to provision this infrastructure does not appear anywhere in the bicep templates provided. Where does this get defined and how can app developer modified some of the details of the app registration.
For example we would like to add additional redirect url's on the app registration.
Upvotes: 0
Views: 767
Reputation: 1627
For TeamsFx project, if you want to change AAD app registration, you can use aad.template.json file.
Here is the full document about how to customize AAD app using aad manifest file: https://learn.microsoft.com/en-us/microsoftteams/platform/toolkit/aad-manifest-customization
For example, if you want to change AAD app names, you can follow the steps below:
From your question, if you want to change redirect URL, you can modify replyUrlsWithType property:
Upvotes: 2