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

How to get Azure App Configuration feature flag value list in bicep template

I would like to get list of already created feature flags from Azure App Configuration in bicep template. I want to pass it to separate bicep file that will use union function on existing and new feature flags to not override already existing…
0
votes
1 answer

Azure Functions using App Configuration slow startup?

I'm using this link https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-azure-functions-csharp to connect my Azure Function to App Configuration to get settings. I am using the following code in my Startup.cs file: public…
vkapadia
  • 290
  • 1
  • 6
  • 17
0
votes
2 answers

Azure App Configuration client library - caching of getConfigurationSetting

I'm using the library @azure/app-configuration in my Angular web site and it works great. I used it for feature flagging. I run into the issue, that when I change a feature flag state (enabled to disabled or vice versa), this is not reflected in the…
Boland
  • 1,531
  • 1
  • 14
  • 42
0
votes
1 answer

AzureAppConfiguration.KeyVaultReferenceException: ClientSecretCredential authentication failed: A configuration issue is preventing authentication

Good evening, I have a problem with an application created and published by another person. The application stopped working, no one realized that the secrets in the App Registrations were expired so I renewed them. Now if I try to start the…
0
votes
1 answer

Dynamic configuration for a .NET 5 web app using Azure App Config not working

I have an issue trying to implement dynamic config for my .NET 5.0 simple web app (written in C#). The problem: I run my app, then go to Azure App Config for this app and change some config setting (like the background color of the page), then…
Mary
  • 131
  • 2
  • 10
0
votes
2 answers

Connect Azure App Configuration to Azure WebJobs

I have multiple webjobs that should take their connection strings and application settings from Azure App Configuration. I've tried following steps present in https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-dotnet-app for…
asd2ws
  • 53
  • 5
0
votes
1 answer

az appconfig kv export throwing an error when the key contains a ":" (colon)

The Microsoft guide lists 4 methods of deploying App Configurations (in my case to App Services). https://learn.microsoft.com/en-us/azure/azure-app-configuration/howto-best-practices We currently use last method (push configuration) in combination…
Mark
  • 480
  • 1
  • 5
  • 18
0
votes
1 answer

Azure App Configuration variables are not available in startup on ASP.NET

I ran into a problem with retrieving configuration from Azure App Configuration in Startup methods. public static IConfigurationSection GetAuthSection() { var intermediateConfig = new ConfigurationBuilder().AddJsonFile("appsettings.json",…
0
votes
1 answer

Read Feature flags from AppConfiguration in a Custom Nuget package

I'm trying to read my feature flags stored in an AppConfiguration. My goal is to create my own NuGet package to reuse it later in several projects. this way I don't need to change the code. It's all good when I read the settings from "Configuration…
Videira
  • 1
  • 1
0
votes
1 answer

Node.js application hosted on Azure App service need to use MSI to authenticate to Azure App Config

I have a Node.js application that need to read its configuration from Azure App.config. When I go through the following example: https://learn.microsoft.com/en-us/javascript/api/overview/azure/app-configuration-readme?view=azure-node-latest I…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
0
votes
1 answer

Azure App Configuration Tags not showing up in Cost Analysis

We have an Azure App Configuration deployed in our subscription and we have put 2 tags to every resource ('costType' and 'environment'). All resources are tagged and appearing when we pull the Cost Analysis report by Tags except the App…
Marko
  • 3
  • 1
0
votes
1 answer

Implementing Azure Event Grid event handler in a Web API which subscribes to changes in Azure App Configuration

I am exploring various methods to get configuration data from Azure App Configuration and got most methods working however I am struggling to implement the Azure Event Grid event handler in a Web API on ASP.NET Core 3.1. I want to know if it's…
0
votes
2 answers

API behind Azure AD Application Proxy: login works but requests with token return ms login site html

I have a token acquired whith MSAL and when a call the API whith the token I always have ms login site html response. With postman (bearer token) and I still have the ms login page. Can someone help me?
0
votes
1 answer

Limitations of Key and Label for Azure App Configuration

I started using Azure App Configuration service and Feature Flags functionality in my project. I am using the Azure portal to create the feature flag with some name and label. When I enter long feature flag name I get the following error The error…
pranay jain
  • 352
  • 1
  • 2
  • 15
0
votes
1 answer

How to get the value of Azure App Configuration Feature Flag with specific label from Spring boot?

I started using Azure App Configuration service and Feature Flags functionality in my project. I followed this documentation and was able to create a Spring boot project. I also created a FeatureFlagService class and autowired the FeatureManager…