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
12
votes
1 answer

403 when connecting to Azure App Configuration using a Managed Identity

I am trying to connect from a net framework app to Azure App Configuration using a Managed Identity but have permission issues. How I connect options.Connect(new Uri("https://myconfigstore.azconfig.io"), new ManagedIdentityCredential(clientId)); I…
Tony
  • 1,394
  • 5
  • 22
  • 48
12
votes
1 answer

Dynamically update .net core config from Azure App Configuration

What I am trying to do: I am attempting to setup Azure App Configuration with a .net core 2.1 mvc web application with a sentinel key in Azure App Configuration, with the goal of being able to change keys in azure, and none of the keys will update…
9
votes
1 answer

Local development access to Azure App Configuration with a managed identity

Is it possible to access Azure App Configuration via a Managed Identity locally (or in a pipeline) without deploying any other services to Azure? I have a .net core unit test project that runs some integration tests against a live site. In order to…
Konzy262
  • 2,747
  • 6
  • 42
  • 71
8
votes
2 answers

Azure functions configure timer trigger from Azure App Configuration

I'm doing an Azure Function that is timer triggered. I want to be able to change the timer, i.e the cron expression, without having to do a re-deploy. I'm getting my other settings from an App Configuration in Azure but this doesn't work for the…
7
votes
2 answers

Azure App Config, Key Vault & Managed Service Identity (.NET Core 3.1)

I have a simple app service set up to use/test Azure App Configuration The Azure App Config contains 2 non-KeyVault entries, and 1 entry which is a Key Vault reference The Key Vault is set up with the proper Access Policy, allowing Get/List of…
5
votes
1 answer

Unable to run Logic App on App configuration event

I want to implement LogicApp, to trigger build every time, when someone changes key-value pairs in App Configuration. In order to do this, I've created a Logic app to trigger, when resource event occurs: But, when I change something in App…
Vasyl Stepulo
  • 1,493
  • 1
  • 23
  • 43
4
votes
1 answer

Dynamically update ASP.NET config on demand using Azure App Configuration

What I'm trying to do: I'm trying to configure update of ASP.Net Configuration on demand using Azure App Configuration as a source and EventGrid subscription to Key-Value modified event with WebHook endpoint. What my issue is: When the event reaches…
4
votes
1 answer

Azure App Configuration - Conditionally create feature flag using bicep

I plan to use the Feature Management functionality within Azure App Configuration service. Using bicep I create the configuration store. Template:…
4
votes
1 answer

Azure Feature Flag is not updating after cache expiration

We have FeatureFlag: IsServiceNeeded with no label set in Feature Manager of Azure App Configuration. We have used in built method AddAzureAppConfiguration by setting up the cache interval. We are using .net core 3.1 web api and Feature Manager of…
4
votes
3 answers

Azure Function EventHubTrigger how to read EventHubName and Connection string from Azure App Configuration?

I am trying to read the eventhubname and connection string from Azure App Configuration, NOT function app settings, but I cannot get this to work, if I real from the function app itself it works fine but I need to read from App Configuration…
Matt Douhan
  • 2,053
  • 1
  • 21
  • 40
4
votes
1 answer

Azure App Configuration to strongly-typed configuration objects

I've been playing around a bit with Azure App Configuration. Here's an example configruation: var environmentVariable = Environment.GetEnvironmentVariable("AppConfigurationConnectionString"); var config = new ConfigurationBuilder() …
4
votes
3 answers

Setting Values in Azure App Configuration from ARM Templates

You can create Azure KeyVault secrets from ARM templates. Can you also create settings in Azure App Configuration from ARM templates in the same way? I can't find any documentation for it if this feature exists.
3
votes
1 answer

How can I add Xbox Gamertag scope in Azure App Directory sign in?

EndGoal: Need to get Gamertag of Xbox in Azure App Directory sign in via microsoft account. right now getting basic information name, email, id, display name i just need gamertag for my work. Getting this error AADSTS70011: The provided request must…
3
votes
1 answer

Use Newtonsoft.Json in isolated-process Azure Functions in .Net 6.0

I currently use Azure App Configuration to store all the config data. When i read the data, i would like to use Newtonsoft.Json instead of the default System.Text.Json to correctly transform my data to custom types. Unfortunately, i cannot find a…
vivek86
  • 707
  • 9
  • 18
3
votes
1 answer

Azure App Configuration Store - Setting label on keyvalues using Bicep

I'm trying to add values to an Azure App Configuration Store using Bicep. I have an issue where I add a label to a keyValue. This is my module: @description('Configuration Store Name') param configurationStoreName string @description('key…
1
2 3
14 15