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

Setting up User Secrets in dot net core throws exception

I am setting up user secrets in secret.json which is throwing error. First I executed this one which was successful - dotnet user-secrets init but when I executed dotnet user-secrets set "MySecret" "12345" received below exception…
F11
  • 3,703
  • 12
  • 49
  • 83
0
votes
0 answers

Azure App Configuration getting the Section of a nested Json .net 6.0

following problem: I am using Azure App Configuration to store config data. I imported the following Json: { "Url": "https://integratortrainingazureappservice.azurewebsites.net/productcategory", "SourceSystemSpecificProperties":{ …
0
votes
2 answers

Getting a Connection String from Azure App Config via Configuration.GetConnectionString()

Is there a special way to define a Key Value setting for ConnectionStrings in Azure App Configuration? I have tried using: ConnectionStrings:DatabaseKeyName ConnectionStrings\DatabaseKeyName Using the standard…
iCollect.it Ltd
  • 92,391
  • 25
  • 181
  • 202
0
votes
0 answers

Azure App service with user-assigned managed identity cannot communicate with Azure App Configuration service

I am trying to use Azure App Configuration service from Azure Web App (Linux) using user-assigned managed identity but application crashes at start-up. My web application is built using AspNet Core 3.1. This is the code I used in Program.cs public…
Sam
  • 519
  • 1
  • 7
  • 32
0
votes
1 answer

Azure - Reading App Config directly from Function App's Configuration in azure

TLDR Can I automatically retrieve values from App Configuration through the Function App Configuration variables section similar to AWS retrieving App Config/Secret values I come from an AWS background and one thing I am used to doing is storing my…
0
votes
1 answer

accessing azure app configuration service values during dependency injection in a Function App

as per the code below, I am connecting to an azure app configuration service in program.cs. This is tested and I can use the config settings in the function app. But I'd also like to configure other services, such as a blob container client. is it…
0
votes
1 answer

Caching options for Azure App Configuration with JS sdk

Any ideas for caching or otherwise reducing the number of requests when using Azure App Config for feature flagging? The .NET sdk docs does provide some options including a .SetCacheExpiration method for setting a cache expiration time, but there…
0
votes
1 answer

Dynamic Configuration Change from Azure App Configuration of azure functions

I use azure http functions written on java to handle different events based on webhooks. Many of the configurations of these functions are stored in an azure app configuration, so we can dynamically change the configurations without restarting the…
0
votes
1 answer

How to use multiple Azure App Configurations in one client application

Lets say we have 2 azure application configurations (TeamConfig and CommonConfig) and one client application (ClientApp). Case 1: Can ClientApp use both TeamConfig and CommonConfig at the same time? Case 2: Can TeamConfig link directly to…
Stian Standahl
  • 2,506
  • 4
  • 33
  • 43
0
votes
1 answer

How to assign an App Service system managed identity App Configuration Data Reader role for a specific App Configuration resource in ARM

I would like to add role assigment from my App Configuration to my App Service. In Azure portal i can do it like this: App Configuration -> Access control (IAM) -> Add role assigment -> App Configuration Data Reader -> Assign access to Managed…
0
votes
1 answer

How do I set json file(json file's path) to a value in Azure App settings?

How do I set json file(json file's path) to a value in Azure App settings? I am adding Firebase SDK to the server. I defined "/my-json-file.json" as GOOGLE_APPLICATION_CREDENTIALS key's value. Because "/" means "\site\wwwroot" (root…
0
votes
2 answers

Memory leak/issue of the object io.netty.buffer.PooledByteBufAllocator from JAR netty-buffer transitively used by azure-data-appconfiguration

About application. We are running a Kafka streaming application in Azure Kubernetes Service (AKS). Which consumes message from Azure Event hubs, performs business logic and writes output message to another event hub. We store our configurations in…
chandu ram
  • 251
  • 2
  • 5
  • 19
0
votes
1 answer

How to access Azure App Configuration key values from AWS Lambda function

I've configured the access to azure app configuration and vault in my project, it works locally, but when I publish the aws lambda to aws cloud it doesn't access azure key values anymore. I have configured: _configuration = new…
Raphael Ribeiro
  • 529
  • 5
  • 18
0
votes
1 answer

Mock connection to Azure App Configuration service using Moq

I would like to mock connection to Azure App Configuration (feature flag) service using DefaultAzureCredential and Moq framework. I wrote extension based on Microsoft…
0
votes
1 answer

.NET 6 - Unable to read values from Azure App Configuration Service and map to strong-typed class object

I have created the Azure App Configuration service in Azure and added some configurations there as Then I have a .NET 6 web application where I am trying to read the configurations from the azure service and map those to an object using IOptions…