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

Using Azure App Configuration for dynamic configuration in a microservice environment

I have tried to find out how I can notify multiple microservice (MS) instances via eventdriven approach if their Azure App Configuration values are changed. I have found that I via Eventgrid can listen on changes in Azure App Configuration but I…
user3154653
  • 203
  • 1
  • 11
0
votes
1 answer

Expand all + Collapse all in Azure App Configuration

There's "Expand all" and "Collapse all" in the UI functionality of App Configuration but it doesn't seem to be doing anything. I kind of hoped it would group configurations by some separator but apparently that's not what it's for and it's not…
Mirek
  • 4,013
  • 2
  • 32
  • 47
0
votes
1 answer

Python Azure SDK: get Key Vault referenced value from App Configuration service

I would like to retrieve Azure Key Vault referenced secrets in App Configuration service. In dotnet it is a piece of cake, you simply add options.ConfigureKeyVault and can retrieve secret like this: var credential = new DefaultAzureCredential(); var…
0
votes
1 answer

Strange behavior when trying to connect to Azure App Configuration with .Net Framework

I have encountered a strange behavior when trying to connect to Azure App Configuration with an Azure Identity from an ASP.Net Web Application. Current environment is .Net Framework 4.8, but the behavior is the same on 4.7.2 and 4.6.1. I am using…
Stati
  • 45
  • 1
  • 4
0
votes
1 answer

Using Azure App Configuration for feature flags in short lived applications

In our project we use approach with short lived branches which are merged into master branch. CI pipeline creates short lived application for almost every short lived branch. Every short lived application should have own state of feature flags. Is…
Andrej
  • 5
  • 4
0
votes
2 answers

How can I read App Configuration Store endpoint and environment from local config store in azure functions?

I am moving our configuration from our local configuration store to a central App Configuration Store for all our Azure Functions. I have created a startup.cs and the code looks as follows public override void…
Matt Douhan
  • 2,053
  • 1
  • 21
  • 40
0
votes
1 answer

Azure App Configuration to retrieve configuration values from c# Azure function via Managed Identity is not working

I have created Azure App configuration and sets Key and value pairs. I have also created a HTTP Azure function via VS 2019 and write below code. using Microsoft.Extensions.Configuration; using Azure.Identity; var config = new…
0
votes
1 answer

Azure-app-config + spring-boot-kubernetes

I'm trying to use azure's spring-cloud-azure-appconfiguration-config-web with spring-cloud-kubernetes-config. The idea is to define in kubernetes configmap application-kubernetes.yaml and also bootstrap-kubernetes.yaml. Inside…
0
votes
1 answer

Azure App Configuration Service Display change in MVC app .NET Core 3.x without Refreshing the Page

What I am trying to do: I have setup Azure App Configuration with a .net core 3.1 mvc web application with a sentinel key in Azure App Configuration, with the goal of as and when i update the values of different keys along with the their sentinel…
0
votes
2 answers

Why Can't I Connect to Azure App Configuration When Running on App Service, getting The request was aborted: Could not create SSL/TLS secure channel

When running the following code to connect from my Azure App Service to Azure App Configuration I get the following "Could not create SSL/TLS secure channel" exception. When I run the code on my dev machine (ie. dev machine connecting to Azure App…
0
votes
1 answer

Does azure app config web hook through http call update all the instances of a app?

We have a app config and spring boot app. we have more than 2 instances of app deployed in app service. Instead of doing polling I want to get the updates as push notification, For which azure app config provide event grid notification, One of the…
pvjhs
  • 549
  • 1
  • 9
  • 24
0
votes
3 answers

Setting/Adding Feature flag in Azure App Configuration

Is there a way to set/add feature flags from Service Fabric Application. As far as I have searched, the only way to change and add feature flags is to do it via the portal. Is there a way to do it through the code itself.
0
votes
2 answers

Azure App Configuration - Disable Refresh - SetCacheExpiration

I am using Azure App Configuration for loading config into my Azure Functions. https://learn.microsoft.com/en-us/dotnet/api/overview/azure/data.appconfiguration-readme?view=azure-dotnet-preview I am using a free plan, and I ran into request…
0
votes
1 answer

Request Throttled : Azure App Configuration

So I am testing Azure App Configuration. https://learn.microsoft.com/en-us/azure/azure-app-configuration/quickstart-dotnet-core-app I am trying free plan for this, which has 1000 requests limit. My App Config store would have somewhere around 50…
0
votes
2 answers

Usage of Azure App Configuration's Feature Flags in Azure Functions

I'm working on exploring the following 2 features of Azure App Configuration in Azure Function's Http Trigger Externalizing the App Settings Feature Flags Below is how i'm getting the reference of the configuration So, when I use…
Prawin
  • 1,158
  • 2
  • 12
  • 26
1 2 3
14
15