Questions tagged [azure-app-configuration]

Azure App Configuration provides a service to centrally manage application settings in Azure.

Azure App Configuration provides a service to centrally manage application settings in Azure. Modern programs, especially programs running in a cloud, generally have many components that are distributed in nature. Spreading configuration settings across these components can lead to hard-to-troubleshoot errors during an application deployment. Use App Configuration to store all the settings for your application and secure their accesses in one place.

222 questions
0
votes
1 answer

App Configuration service for on-prem dotnet core app

We have a dotnet core 3.1 console application. It is deployed to on-premise Windows server. There is some sensitive information that we would like to keep in Azure Key Vault. However, instead of accessing Key Vault directly, we would like to access…
0
votes
1 answer

How to use App Configuration for common resources

This SO is close but my question is about how to share configuration in Azure App Configuration across multiple apps. I get how this helps configure the app itself (how it works) but looking for advice on how to share settings across apps. Esp…
MarkD
  • 1,511
  • 18
  • 32
0
votes
1 answer

How to retrieve Azure App Configuration Service settings while in Program.cs

I am using Asp.NET Core 5 (v5.0.6) web API deployed as an Azure App Service and I am migrating from using appsettings.json in the API to integrating with Azure App Configuration service. I have the Azure App Configuration Service set up but the…
0
votes
1 answer

Unusually High Requests on Azure App Config

I've been building a Python app and have been managing everything in Azure. I use Azure App Config to store certain values and pull them throughout the code. I've noticed that my request counter jumps by around 100 just for starting the local…
0
votes
1 answer

AzureAppConfiguration does not work with Azure.Identity.TokenCredentials

I try to add AzureAppConfiguration to my dotnet core web application using the following Code: var azureCredential = new DefaultAzureCredential(); config.AddAzureAppConfiguration(options => options.Connect(new…
quadroid
  • 8,444
  • 6
  • 49
  • 82
0
votes
3 answers

how to read azure app config values in C# startup.cs class in azure function

I have added key value pair in Azure app Configuration and trying to read it in Startup.cs class file. Please suggest how to do that. public class Startup : FunctionsStartup { private static readonly string url= "*******************"; …
Arshit Singh
  • 103
  • 4
  • 14
0
votes
2 answers

Azure Function Queue Trigger Connection - can I set this from a variable or specifically Azure Application Configuration?

As simple as I can put it, I have the following: public async Task Run([QueueTrigger("order-new", Connection = "AzureWebJobsStorage")]string myQueueItem, ILogger log) Is there any way I can do something like: public async Task…
naspinski
  • 34,020
  • 36
  • 111
  • 167
0
votes
3 answers

Read values from appsettings.json before configuration.build

Is that possible to read values from appsettings.json before configuration.build ? i need to get endpoint, clientId, secret and tenant to bind configuration with azure app configuration Configuration = builder.AddAzureAppConfiguration(options => …
kosnkov
  • 5,609
  • 13
  • 66
  • 107
0
votes
1 answer

Connecting an Azure App Service to a keyvault backed app configuration raises 403

I'd like to know, how I can properly connect my App Service to an App Configuration which is also backed via KeyVault. Sadly I didn't really find a perfectly fitting tutorial, so now I kind of have something puzzled together, which doesn't…
0
votes
2 answers

Azure AppConfiguration (using DefaultAzureCredential on local) returns no keys

When I inject IConfiguration in a function, it does not find any keys that only live in my "Azure App Configuration". I have a functionApp (V3) that accesses App Configuration using the DefaultAzureCredential. I am running this locally in debug…
Griddy
  • 93
  • 1
  • 8
0
votes
1 answer

Access Azure AppConfiguration with System managed Identity using DefaultAzureCredential

I have a functionApp (V3) that is trying to access App Configuration using the DefaultAzureCredential. My System managed user is switched on and has the "App Configuration Data Reader" role. I am running this locally in debug hence the need for a…
0
votes
1 answer

Azure AD application permissions: Is it possible to get permissions which comes under "Other permissions granted for tenant"?

I am creating an application in Azure AD and assigning "Application" permissions to that applications using Microsoft graph APIs. When I update the permissions ("requiredResourceAccess" array) for that application, which also includes removing some…
0
votes
2 answers

Get Read only connection strings of App Configuration in ARM Template

Hi I want to add Application Config Read Only Connection string in ARM Template "appSettingsShared": { "value": [ { "name": "RedisCache:ConnectionString", "value":…
0
votes
1 answer

Azure App Configuration trace request ip address?

I have multiple web apps retrieving the app settings from Azure App Configuration Service on startup without any refresh options. I also have eventgrid and webhooks set up to push notifications of key changes down from the Azure App Configuration…
0
votes
1 answer

Force update Configuration using Azure App Configuration

I want to use dynamic and central configuration strategy for my microservices (MS) (multiple instances of same type having same configuration) and I'm using Azure App Configuration (AAC). I want to minimize calls to AAC so when one MS is starting I…
user3154653
  • 203
  • 1
  • 11