Questions tagged [azure-application-settings]

29 questions
0
votes
1 answer

Unable to apply API permissions to App Registration

Attempting to apply API permissions to an App Registration results in the below error. Anyone have experience resolving this or do I need to wait on support from MS? I've cleared the cache, rebooted, tried incognito. I've had other GAs within our…
0
votes
0 answers

Azure application - Set application permisions on behave of a user

I am trying to find a way to allow an Admin account, that has proper permissions, to authorize (large amount of) users in our Azure AD. We could authorize users with a link and let them sign in, but that would be very time consuming, for we have…
0
votes
1 answer

Azure AD OAuth Token Claim - Populate DisplayName attribute for Application Users

When I request an OAuth token from Azure AD for an application user (using a client_id and client_secret) targeting the correct resource audience (target application), I don't know how to get Azure AD to populate a claim for the client's DisplayName…
0
votes
1 answer

Azure AD application permissions: Does permissions assigned to one application will modify another application in same tenant?

I am creating application in Azure AD and assigning following "Application" permissions to that applications. 1) Application.ReadWrite.All 2) AppRoleAssignment.ReadWrite.All 3) Files.ReadWrite.All 4) Group.Read.All 5) User.Read.All 6)…
0
votes
1 answer

Azure AD application takes time to activate?

I am creating an application in Azure tenant with Microsoft graph API. At the same time, I am also uploading a self-signed certificate/ Client secret for an application. The OAuth client can request an access token by providing the user assertion.…
0
votes
2 answers

Updating appsettings.json values in azure deployed application

I've went through different answers before posting my question, but I need some assistance in order to resolve the issue. This is sample of the appsettings I have deployed: { "ConnectionStrings": { "DefaultConnection":…
Laziale
  • 7,965
  • 46
  • 146
  • 262
0
votes
0 answers

Questions on SQL Server hybrid solution authentication with 2 domains via Azure Application Proxy / Azure AD Guest users

One of our customer raised the below query: They've got Azure VM (running SQL 2019 Analysis Services) connected to Azure AD via Azure Domain Services. It is on DomainX.com domain. For Quest Users works well, when using B2B collaboration scenario in…
0
votes
0 answers

C# Console Application unable to access Web Api with AccessToken always getting 401 error

I am a newbie in Azure. I have registered an application in Azure B2C. And I am trying to access my web api from a c# console application (not DOT NET core). I can generate AccessToken using below code and access my API from localhost successfully.…
0
votes
1 answer

How to publish Azure function app application settings from visual studio based on publish profile

I created function app in visual studio and able to publish successfully. But It needs manual configuration settings in azure portal (cloud). example scenario: Let's say If we have connection string in settings, it varies on environment basis. I…
0
votes
1 answer

Use Application settings from Azure Web App directly, not from appsettings.Production.json

I would like to use App settings for Production environment, as defined in the Azure Web App: See here Currently using appsettings*.json files to get these values in Program.cs for the correct environment: public static IWebHost…
Tom L
  • 35
  • 1
  • 1
  • 4
0
votes
2 answers

Physical location of Service Pricipals in Azure Portal?

Everytime I go to create a Service Principal in azure, I go through the steps of creating an Application. Which I understand, cool. My application has authentication rights. When I create an Automation Run As account, it creates a service principal…
0
votes
2 answers

Executing Same Azure Function but for different input values in App Settings

I have a Azure Function scenario as follows: 1) If product = 123, then use Service Bus Topic1 2) If product = 456, then use Service Bus Topic2 I think there are 2 options to solve this: OPTION 1: Have same Azure Function deploy 2 times (2 diff…
0
votes
2 answers

"Keyword not Supported" Error message while fetching connection string from azure application setting using environment variable

I am trying to get the connection string from Azure Application settings using environment variables, But it seems that the format of the connection string that I am putting in Azure App setting is not proper.Here is my original connection string…
-1
votes
1 answer

Access application settings in react application deployed on Azure

I have deployed react application on Azure app service and I need to access application settings from environment variable. I have checked using kudu using following command and its showing application setting output of- node --print…
1
2