AppConfiguration
AppConfiguration copied to clipboard
Questions, feedback and samples for Azure App Configuration service
Would be great to be able to pull configuration from the App Configuration Service into Git Hub Actions much like the current functionality of Azure Dev Ops Pipelines here https://docs.microsoft.com/en-us/azure/azure-app-configuration/pull-key-value-devops-pipeline
What about offering the opportunity to reference App Configuration values the same way we can do with [Key Vault References](https://docs.microsoft.com/en-us/azure/app-service/app-service-key-vault-references). Key Vault: @Microsoft.KeyVault(SecretUri=https://myvault.vault.azure.net/secrets/mysecret/ec96f02080254f109c51a1f14cdb1931) App Configuration: @Microsoft.AppConfiguration(ConfigurationUri=https://my.azconfig.io/configs/mykey/mylabel) That way, we can...
Hi i want to enable auditing for key-value pairs on addition updation or deletion of config key/value. Is there a feature/ solution to support this requirement. Do we have any...
Currently the Azure DevOps extension doesn't allow * or , in the label filter limiting us to have to run the task multiple times to extract config with different labels....
Hello, would it be possible to add support for export/import of all elements in Azure app configuration ? Right now we have around 10 labels in our Azure app config....
The keys filter is great but sometimes I just want to be able to find a config by searching for a part of the key name which is in the...
In Label, we can have key-values for several applications, we can manage with prefixes. So when we compare two labels to check differences, we get a comparison of all keys...
I would like to associate a short comment with my key value pair to provide context on its meaning. In my case, we are storing client IDs, and I would...
Hi, I'm use App Configuration registration as follows: builder.AddAzureAppConfiguration(configure => { var label = $"{config["Config:AppName"]}-{config["Config:ConfigName"]}"; configure.Connect("xyz") .Use(KeyFilter.Any, label) }); This is working perfectly fine. But when adding a ConfigureRefresh with...