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
2 answers

Azure App Configuration: labelFilter : is it possible to 'prefer' a certain label without excluding other labels?

In Azure App Configuration you can store a key with multiple values, differentiated by labels. When building the config it is possible to filter which keys to read from the store by using labelFilter="SomeLabel" In my case i have 50 keys in the app…
FS'Wæhre
  • 196
  • 2
  • 16
0
votes
1 answer

Feature management, feature toggle, feature flags not working with Azure App Configuration Store

I am trying to add feature flags to .net core 2.2 console app. The feature flags are defined on Azure App Configuration store. When the feature flags are defined in the appsettings.json file, I faced a problem, but made it to work. The full console…
VivekDev
  • 20,868
  • 27
  • 132
  • 202
0
votes
2 answers

Azure App Configuration: Getting PrimaryKey in a arm template

I have extracted the ARM template belonging to the preview version of Azure App Configuration, and am setting it into our IaC repository - so far so good. Our next logical step is to include insertion of the AppConfiguration.PrimaryKey into our Key…
Markus Foss
  • 335
  • 4
  • 14
0
votes
1 answer

.NET Core 2.2 - Unable to get app configuration from Azure AppConfig

I've created an Azure AppConfiguration store and get the Access Keys (EndPoint, Id, Secret, ConnectionString). Now from my .NET Core WebAPI app, I want to read the configurations from Azure. I have tried many approaches that I found online but none…
Jay Nguyen
  • 342
  • 1
  • 2
  • 18
0
votes
1 answer

Could not Load file or assembly 'Microsoft.Azure.AppConfiguration.AzconfigClient

I keep getting this exception on the build. it stops at this line: IConfigurationRoot config = builder.Build(); and gives this exception: System.IO.FileNotFoundException: 'Could not load file or assembly …
Byusa
  • 2,279
  • 1
  • 16
  • 21
0
votes
1 answer

How can we pass extra parameters when we call IFeatureManager.IsEnabled("featurename") which triggers IFeatureFilter.Evaulate method

I am learning Azure App Configuration - Feature manager. I am trying to understand if a custom feature filter that we write needs to use some parameters which are not part of HttpContext. How can we pass extra parameters when we call…
-1
votes
0 answers

Inject Azure App Config Values into XML file in Azure DevOps YAML Pipeline

I have set up some Azure App Config keys which I plan to inject into my Azure DevOps Pipeline which among others, comprises of a number of terraform config files and critically, some XML files which define my Azure API policies. When the pipeline is…
-1
votes
1 answer

Why is my Azure App Configuration instance is being throttled?

I have a basic instance of Azure App Configuration. It's supposed to allow 1000 requests per day. The usage chart for the previous day looks like this: But I can no longer open Configuration Explorer or Feature Manager. Getting these errors: I…
user1044169
  • 2,686
  • 6
  • 35
  • 64
-1
votes
1 answer

Is local secret store best practice for sensitive data?

I am using Azure App Configuration on a team project and am wondering what would be the best way to store the connection string, so that it is protected, yet not every developer would have to install it to his local secret store? For production I am…
-2
votes
1 answer

Unable to register Microsoft.AppConfiguration in the 12-month free subscription

I got a 12-month free subscription which includes $200 credit. I'm unable to register Microsoft.AppConfiguration. Is it not included in the free subscription? https://azure.microsoft.com/en-us/pricing/free-services Error: creating Configuration…
nop
  • 4,711
  • 6
  • 32
  • 93
-2
votes
1 answer

How to use configuration data when configuring services in .Net 5.0?

I'm trying to use already configured custom config-class to configure another service. Configuration gets data from local settings and Azure AppConfiguration store. This is my Startup code: public void ConfigureServices(IServiceCollection…
1 2 3
14
15