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
1
vote
1 answer

getting configurationRefresher as null

I am using azure app configuration with azure function. So i want to refresh the keys automatically but i am getting configurationRefresher as null always. builder.AddAzureAppConfiguration(appConfigurationOptions => { …
Ekta
  • 261
  • 1
  • 2
  • 11
1
vote
1 answer

Azure app config does not get updated when azure function is running

I am using azure app configuration and azure function. So i am pulling all the key value from azure app configuration. But if the azure function is running and if i make any changes in key value from azure app configuration, azure func will not show…
Ekta
  • 261
  • 1
  • 2
  • 11
1
vote
2 answers

How to get Azure App configuration access keys using RM module in power shell

Azure rm module doesn't show any related commands to get keys from app configuration.
1
vote
1 answer

is it possible to use Feature Management (feature flags) with Azure Functions?

I have been trying to use use feature flags with azure functions, but I can't seem to get the configuration correctly. There is some documentation on how to get the configuration values, but nothing around feature…
Tiago Somda
  • 144
  • 1
  • 5
1
vote
3 answers

Accessing Azure App Configuration from a console application

I am trying to access App configuration with a simple console app. So far I have: static void Main(string[] args) { IConfiguration config = new ConfigurationBuilder() .AddUserSecrets("e7315677-d6aa-41ab-b7cc-8e801a7c8ae9") …
Kevin Burton
  • 2,032
  • 4
  • 26
  • 43
1
vote
2 answers

File path from within Azure CLI task

I have an Azure CLI task which references a PowerShell script (via build artifact) running az commands. Most of these commands work successfully, but when attempting to execute the following command: az appconfig kv import --name $resourceName -s…
1
vote
2 answers

How do you define data types in Azure App Configuration?

Is it possible to store data types in the Azure app configuration? Or is it left to the program calling the app configuration to declare the data type?
joshduffney
  • 389
  • 1
  • 4
  • 16
1
vote
2 answers

Access to Azure Key Vault reference value from App Configuration in development on local

I have come across with the Azure App Configuration service, with the ability to link secret from Azure KeyVault, by creating a new record with an option of Key Vault reference. I have used Microsoft extension for App Configuration as described in…
1
vote
1 answer

Can we get a configurationClient and/or secretClient from a configuration builder object in AzureFunction .net core?

I was working on a project which required me to create Keyvault reference in azure AppConfiguration, add/update secrets in KeyVault and to access values in AppConfiguration using Configuration. Currently, I'm using : -ConfigurationClient to create…
1
vote
1 answer

Connect to Azure App Configuration using Managed Identity from a net framework application

I can connect to Azure App Configuration using a connection string from my framework 4.7.2 app. I want to connect with a managed identity instead, but there is no ConnectWithManagedIdentity("https://YOUR_ENDPOINT.azconfig.io") method found on the…
Tony
  • 1,394
  • 5
  • 22
  • 48
1
vote
1 answer

Selecting both labeled and not labeled values from Azure App Configuration

In my Azure App Configuration I have 2 keys, one of them has label. Alpha:A = '1' [no-label] Alpha:B = '2' [no-label] Alpha:B = '3' ['Api' label] I would like to select all Alpha keys but if they have label, load 'Api'. Currently I do this: First…
Kamran
  • 1,258
  • 1
  • 16
  • 28
1
vote
3 answers

Spring Boot and Azure: initialise bean before auto-configuration

Trying to setup a Sprint Boot Application to load configurations from Azure App Configuration, with a reference to a Azure Key Vault entry for properties with sensitive information. Using App Configuration is working properly and problems emerge…
1
vote
3 answers

Can Azure Devops pipelines update Azure App Configuration

Had a quick google, and there appears to be nothing out there. Can an Azure Pipeline update Azure App Configuration? Or would it make sense to be builds and deployment/run-time config away from each other
Stuart.Sklinar
  • 3,683
  • 4
  • 35
  • 89
1
vote
1 answer

error when running az appconfig from command line

I am getting the following error when running az appconfig az appconfig kv export: error: the following arguments are required: --destination/-d az appconfig kv export -f bin\Debug\netcoreapp2.1\azureappconfig.json --format json --separator :…
kumar
  • 8,207
  • 20
  • 85
  • 176
1
vote
2 answers

Azure App Configuration - How to set a secret

I follow this guide to set up Azure App Configuration. But I think I misunderstand this line: dotnet user-secrets set ConnectionStrings:AppConfig "Endpoint=;Id=;Secret=" Or rather; what is what... your_endpoint…
Pierre
  • 559
  • 9
  • 21