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

In which environment should Azure app configuration be placed?

In my company we are used to using one Azure resource group per environment. Each environment includes one instance of everything the application contains, for example a keyvault, application insights and several webapps. What I've interpreted from…
Frank
  • 23
  • 8
0
votes
1 answer

How to use ConfigMap in AKS and Azure Configuration in C#

In our application we are using Azure App Configuration for all the configration and we are deploying it to AKS. I am using Config map just to keep the Azure App configuration endpoint and application is able to read that but its not able to read…
0
votes
2 answers

Dynamic configuration does not work with spring boot property when it is assigned a value in the application.properties

I have been dealing with an issue for a while. I have a spring boot application which I need to integrate with azure application configuration store to dynamically change the properties without restarting the application. Before I explain the issue,…
0
votes
1 answer

How to get .crt and .key files from Azure App Configuration

I have a key vault where I store one certificate. For now I was using CSI driver to get it from the key vault and mount it in my pod. It showed like this: cert, cert.crt, cert.key. I would like to use from now, Azure App Configuration. So I created…
seba300
  • 25
  • 6
0
votes
2 answers

How to always load feature flags with No Label in azure app config in Java, Spring

I am using azure app configurations to store my feature flags. By default feature flags are loaded as per the current profile, set in application.yaml like: spring.profile.active Now, my deployment environments has seperate instances of azure app…
Charu Jain
  • 852
  • 1
  • 7
  • 18
0
votes
1 answer

Expose azure app configuration as env var or config map in AKS service

My requirement is to use azure app configuration in my spring boot microservice (deployed on AKS) as environment variable or config map, since I cannot update the service to use the starter package as mentioned in MS documentation.
0
votes
2 answers

Is it possible to remove all App Configuration keys before deploying the new keys?

I have a Bicep script that deploys an instance of App Configuration into a resource group. We use the "incremental mode", as otherwise a deployment of a single instance would delete everything else on that resource group. However, the problem is…
Nuno
  • 3,082
  • 5
  • 38
  • 58
0
votes
0 answers

How to load nested Azure App Config settings as nested classes in .Net? (with IOptions pattern)

I am trying to load nested settings from Azure App Config to my nested classes in .Net and it doesn't work for me. Here is my setting in Azure App Config: ReplicaService:CosmosDb:Url And here is my nested AppSettings class: public class…
Tanuki
  • 717
  • 1
  • 9
  • 24
0
votes
1 answer

Callback when App Configuration refreshes

Say I have this code: appConfigOptions.ConfigureRefresh(refresh => { refresh.Register("Sentinel", "Common", refreshAll: true) .SetCacheExpiration(TimeSpan.FromMinutes(5)); }); When the Sentinel key changes, is it possible to also invoke a…
Nuno
  • 3,082
  • 5
  • 38
  • 58
0
votes
1 answer

vscode azure app configuration 403 forbidden

I'm developing a c# azure function app using vscode on mac. I have the Azure extension installed and I've used it to login to azure. I have an integration test that attempts to read from an app configuration as follows: string endpoint =…
0
votes
2 answers

Azure App Configuration - sentinel key not working?

Using this documentation from Microsoft, I set up a sentinel key to reduce the number of times my app checks for changes, but it's not working as expected so maybe I'm misunderstanding how this works? My understanding of how it should work: By…
Matt M
  • 1,093
  • 2
  • 11
  • 26
0
votes
1 answer

Python AzureAppConfiguration SDK and Azure CLI SDK refuse to authenticate

So I'm having all sorts of problems trying to authenticate a Python environment. My ultimate goal here is to use the Azure AppConfiguration SDK to read values from an AppConfig service in Azure. But right now I'm failing at the very first…
Martin Hatch
  • 279
  • 2
  • 16
0
votes
0 answers

Deploy app code from Gitlab to azure app service using sync method

I've deployed an application with the code on a GitLab repository in the Azure App service. I used the deployment center to configure the integration with GitLab (external). I used the advanced tools to create the key to be set in Gitlab. I managed…
0
votes
1 answer

How to add csp, x-frame-option header Azure app service ( nodejs, react)

We are using Azure app service for my react application . We are serving react build artifacts from the azure app service (the app service is using nodejs 14). Here i wanted to add content-security-policy header in web.config file. Add…
0
votes
1 answer

Dotnet Isolated ServiceBusTrigger connection string setup with Azure App Configuration

I've just switched from dotnet in proccess project to isolated one, but now I have problem with configuring connection string in my ServiceBusTrigger. Program.cs var host = new HostBuilder() .ConfigureAppConfiguration(builder => …
Julia
  • 15
  • 3