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
1
vote
1 answer

Azure app configuration throws exception & does not load the configuration when a disabled key vault secret is present as KV reference

I have an Azure app configuration with 2 keys. Both have key vault references as values. When one of the key-vault secrets is disabled for some reason (because expiration date has passed, not needed for now etc.,), entire configuration loading fails…
BCoder
  • 13
  • 3
1
vote
3 answers

Using Azure App Config -> Want to allow local config to override for devs

I have a Blazor server app. It's using Azure App Config to config values now - but I optionally want to allow devs to override local. The problem I'm running into is CreateDefaultBuilder loads the config from local appsettings.json/env/et al first,…
Greg
  • 424
  • 1
  • 4
  • 14
1
vote
2 answers

What is wrong with my Azure App Configuration endpoint?

I have built two test net core mvc test apps using Microsoft tutorials. Build an app that uses a connection string for using Azure App Configuration Quickstart: Create an ASP.NET Core app with Azure App Configuration Build an app that uses managed…
Dave
  • 687
  • 7
  • 15
1
vote
1 answer

Add DNS zone configuration to an Azure Private Endpoint

I would like to add DNS zone configuration using the command line, but was unable to find the equivalent command-line commands.
1
vote
1 answer

Azure AppConfiguration with Spring Boot 2.5.x

Question How to integrate an Azure AppConfiguration with SpringBoot 2.5.x or higher? Info Im trying to use an Azure AppConfiguration resource with a Spring Boot 2.5.4 project. Unfortunately I cant get it to read a setting from the AppConfiguration…
1
vote
0 answers

Azure web app for containers- additional parameters for docker run command

I have web application developed using the PHP and Laravel and trying to host in the Azure Web App for Containers service. I have integrated stackify logging functionality for the application and the server. I need to send additional parameters to…
1
vote
2 answers

Get Value from Azure App Configuration Store where the content-type is set to application/json in C#

I am trying to fetch the values from the Azure App configuration store. I have created a key - Credentials with the value { "Name": "MyNewCsv", "Extension": "csv", "Delimeter": "|" } and I have set its content-type to…
1
vote
2 answers

Guidance using Azure App Configuration in Azure Function Consumption Plan

I am using the Azure Function Consumption plan to monitor Service Bus topic subscriptions and process the webhook messages from vendors. I am storing my settings in Azure App Configuration but it appears that since App Configuration is considered an…
John Tolar
  • 327
  • 1
  • 7
1
vote
2 answers

Azure App Configuration Push Task - How can I deploy key vault reference values in azure app configuration using this task?

I am using AzureAppConfigurationPush@1 task for deploying app configuration values in different environment. I am able to add key value pairs sucessfully but I am not finding ways to add Key vault reference. -task: AzureAppConfigurationPush@1 …
Imgane5h
  • 304
  • 1
  • 3
  • 16
1
vote
1 answer

What happened with the FeatureGate attribute?

I was checking the official documentation from Microsoft and it states that the FeatureGate attribute can be used to control whether a whole controller class or a specific action is enabled. I've installed the…
1
vote
0 answers

Azure App Configuration: JavaScript SDK Getting Features From Promise Not Returning Data

I'm doing a PoC for Azure App Configuration. I created a free instance in our Azure env and added a couple of feature flags. The Issue I am having is with the JavaScript SDK when attempting to fetch feature flags from the App Configuration. Here's…
Joseph Freeman
  • 1,644
  • 4
  • 24
  • 43
1
vote
1 answer

Feature Management - Internal caching between two applications

I've currently been delving into the IConfigurationRefresher functionality, and the SetDirty() and RefreshAsync() methods that it provides. This is the main code that I'm using, which is currently refreshing the cache of the FeatureManagement…
JakeRoper
  • 13
  • 1
  • 3
1
vote
1 answer

Azure Appconfiguration and IOption|snappshot|monitor pattern

If you use IOptions pattern i.e typed settings approach how should you then be able to have a dynamic name convention for parameters in App Configuration (AC) ? Let's say we have 3 environments test, stage and prod and in AC we would like to have a…
user3154653
  • 203
  • 1
  • 11
1
vote
1 answer

REST API for listing features in Azure App Configuration's Feature Manager

Microsoft offers a RESTful API for Azure App Configuration with the documentation at: https://learn.microsoft.com/en-us/rest/api/appconfiguration/configurationstores/list I have defined some features using Feature Manager in an instance of App…
Mar Chal
  • 133
  • 3
  • 15
1
vote
1 answer

Azure Function Trigger Name/Connections from App Configuration

Is there now a way to set the Trigger Properties(Name/Connection) using the value from Azure App Configuration?. I added a startup class that reads the data from Azure App Configuration but it seems the trigger set its properties earlier than that,…