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 read connection string from Azure app configuration?

Step 1:I have the below app configuration key set up in azure portal: KEY: ABC:EmployeeProfile:AzureStorage:ConnectionString Value: MyAzureStorageConnectionString Now I am using .Net Core5.0 web api. Step 2.In my Program.cs, I have: public static…
0
votes
1 answer

Assign the Service Connection User a role through ARM template

We just started recently using App Configuration Service in Azure for some of our applications. As part of the setup, we removed Access Keys as a possible authentication method. This works pretty well, we have assigned dataowner rights to our team…
0
votes
3 answers

Azure App Configuration export and import

I have a pretty simple line on code for import/export App Configuration between different envs. az appconfig kv export -n appc1 -d file --path abc.json --format json --yes az appconfig kv import --name appc2 --source file --format json --path…
0
votes
1 answer

How to parse JSON from Azure App Configuration into an strongly typed object

I'm trying to parse JSON from Azure App Configuration into my Azure function but I get null. Am I doing something wrong? The Key is "Site" and Value is { "SiteUrl": "url", "TitleXpath": "xpath" } Here is the class I'm trying to parse JSON…
0
votes
1 answer

How to read the Azure App Configuration in Service Fabric ASP.NET Core Stateless Web API?

I need help to read the App Configuration in Service Fabric ASP.NET Core Stateless Web API. In the Normal ASP.NET Core Web API, we can use the Host CreateDefaultBuilder to read the config and use it in the Startup and other classes. If I try to…
0
votes
1 answer

Azure App Configuration, Key Vault and client certificate credentials

I am currently working on a few services that uses keyvault, authenticating with ClientCertificateCredential / Registered Apps. These are running on-premise. Looking into using Azure App Configuration in a similar way, combined with keyvault. So a…
0
votes
0 answers

Accessing Azure app configuration in a WCF service

We have an on-prem WCF service. Recently we added Azure app config to store some config values. We use certificate based authentication(using service principal) to access Azure App config. The issue is, when we try to connect to the Azure app config…
BCoder
  • 13
  • 3
0
votes
1 answer

Added a service connection to the Azure Devops project to connect to App Config but App config doesn't show the Service connection

Added a service connection to the Azure Devops project to connect to App Config but App config doesn't show the Service connection. I'm getting a not authorized when try to connect to App Config from Azure Devops pipeline. ##[error]Access to…
0
votes
1 answer

Atomically push settings to azure app config

I'm using an azure devops pipeline to push a json config file to azure app config. According to the documentation there's a setting that can be enabled: Delete all other Key-Values in store with the specified prefix and label: Default value is…
NickL
  • 1,870
  • 2
  • 15
  • 35
0
votes
1 answer

How to configure auto scale for apps having batch jobs?

Problem: We have App Service Plan (P1v3:1) which has 6 java apps , out of which 2 apps have batch jobs (Spring @Scheduled) scheduled to run every 1 hour. We have 1 app , which renders data to UI and handles most of the traffic. We found the issue…
0
votes
3 answers

How to create Azure Feature Flag for the App Configuration through c# code?

I am using .net core 3 to create configuration setting in App configuration. I was able to create a key-value in the configuration explorer using the following code snippet and some additional configuration in the link below var client = new…
0
votes
1 answer

Spring boot Azure app config & keyvault - unable to continue auth chain

For starters, when I don't have any keyvault reference links with my app config, I can pull my value on boot with no issues. However, I am trying to connect my Spring Boot app to my Azure app config resource that has secrets linked to Azure…
rj2700
  • 1,770
  • 6
  • 28
  • 55
0
votes
2 answers

Azure Spring Cloud AppConfiguration refresh is not working

im having some problems refreshing anything, be it @ConfigurationProperties or @Value, using the implementation("com.azure.spring:azure-spring-cloud-appconfiguration-config:2.1.1") library. From what i could find and debug, the inner…
jiraspav
  • 41
  • 9
0
votes
1 answer

Azure APIM Policy to authenticate App Configuration service using access keys

I'm trying to authenticate Azure App Configuration Service with access keys in APIM policies. Can someone help how we can authenticate Azure App Configuration Service using Access keys in APIM policies.
0
votes
1 answer

How to add map in the Azure App Configuration

In the Azure App Configuration, we store value in the form of key-value pair. Generally, we store string values in the key-value pair like: "key" : "red" But I want to store map in value like: "key" : { 1: {1,2,3}, …
suraj jain
  • 21
  • 6