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
2
votes
1 answer

How do I Read/Write configuration data in Azure App Configuration from a Blazor app using the logged in user's credentials?

I am building a web portal for managing the values in some of our Azure App Configuration stores, to provide a user-friendly editor for some complex json-configuration values. I think I have all the setup required, but am only getting 401 or 403…
2
votes
0 answers

Problem with automate refresh Azure App Configuration with Spring Boot and enabled global method security

I have a Spring Boot (2.6.6) application which is connected to the Azure App Configuration. I also use the automated refresh mechanisms from the Azure App Configuration, which works fine - I change a value in Azure App Configuration and also update…
Lennart
  • 21
  • 1
2
votes
1 answer

Dynamically Reading Azure App Configuration in .Net core Web App using .Net 6

What I am trying to do: I am attempting to setup Azure App Configuration with a .Net 6 web API application with a sentinel key in Azure App Configuration, with the goal of being able to change keys in azure, and none of the keys will update in my…
2
votes
1 answer

In Terraform Azure azurerm, How to get App Config Connection String?

Given an app_service: resource "azurerm_resource_group" "example" { name = "example-resources" location = "West Europe" } resource "azurerm_app_service_plan" "example" { name = "example-appserviceplan" location …
2
votes
1 answer

Failed to bind properties under 'config.map' to java.util.Map>>:

I am using Spring-boot Application where I am able to connect with Azure App Configuration. But getting the error when I try to read value with content-type application/JSON. My Java Class @ConfigurationProperties(prefix = "config") @Getter …
suraj jain
  • 21
  • 6
2
votes
1 answer

How to disable public access for app configuration in terraform

I can create azurerm_app_configuration app configuaration for Azure app configuration. And can create azurerm_private_endpoint using terraform. But I didnot find out which terraform function can be used to disable public access, as image…
Thanh Nguyen Van
  • 10,292
  • 6
  • 35
  • 53
2
votes
1 answer

Application doesn't load azure app config feature flag value but loads config values

I have a Blazor app that I want to use Azure app config. I've successfully setup getting config values, however it doesn't find my feature flag. When I inject an IConfiguration and query the value of a config value, like so Configuration["value"]…
Tessaract
  • 1,047
  • 7
  • 24
2
votes
1 answer

IApplicationBuilder does not contain a definition for UseAzureAppConfiguration

I've been trying to implement feature managament in my Blazor app following this and that but for some reason my program refuses to accept "UseAzureAppConfiguration" even though I should have the proper usings and packages. This is my…
Tessaract
  • 1,047
  • 7
  • 24
2
votes
4 answers

What is the point of Azure App Config KeyVault references?

In Azure you can setup an App Config and a KeyVault. The point of the KeyVault being to store more sensitive data than your App Config and be able to regulate access to the config and vault separately. So what is the benefit of using a keyvault…
Tessaract
  • 1,047
  • 7
  • 24
2
votes
2 answers

How to call ConfigureAppConfiguration when testing Azure Functions

We have recently added Azure App Configuration into our Azure Functions, and we now want the Startup code for the App Configuration to be triggered via the tests. Our function startup code looks like this - public override void…
2
votes
2 answers

Access Azure App Configuration Settings that Reference Key Vault in nodejs

For an Azure function, running on Linux, using Node.js runtime v14, I want to read app configuration using @azure/app-configuration, when some config values are cleartext, but others are connection strings to keyvault. My colleague, writing in C#,…
2
votes
1 answer

How do I use Feature Tags from Azure App Config in Blazor?

I am attempting to use feature flags from Azure App Config in my Blazor application. I have been following this documentation from Microsoft to add them. I am successfully able to use them by injecting the FeatureManager into my code sections and…
2
votes
1 answer

Azure App Configuration from Azure function

I am accessing my configuration stored in Azure Appconfiguration. I am using SDK (Azure.Data.AppConfiguration) from Azure function. Following the example from…
2
votes
1 answer

Azure App Configuration Values referencing other Keys

In Azure Devops Variable Groups you do something like: FileRepo = 'FolderA' LogFile = '$(FileRepo)/Log.txt' Is this possible in Azure App Configuration? *UPDATE: When using the App Configration as an Azure Devops Task extenstion, $() references will…
michiel Thai
  • 547
  • 5
  • 16
2
votes
1 answer

Azure Key Vault .NET Core 3.1 Web API Can't Access Secrets

I have a .NET Core 3.1 Web API project in which I'm trying to wire up Azure App Config. I have it working in a couple other .NET Framework projects just fine, but when I try to implement it in a Core 3.1 project, I am able to read unencrypted values…
1 2
3
14 15