AppConfiguration icon indicating copy to clipboard operation
AppConfiguration copied to clipboard

Questions, feedback and samples for Azure App Configuration service

Results 124 AppConfiguration issues
Sort by recently updated
recently updated
newest added

Is it possible to set the `TargetingContext` before calling `IsEnabledAsync` (com.azure.spring.cloud.feature.manager)? Like in C# [example](https://github.com/microsoft/FeatureManagement-Dotnet/blob/main/examples/TargetingConsoleApp/Program.cs) I would like to have something similar `featureManager.isEnabledAsync(featureName, targetingContext).block()` The option described [here](https://learn.microsoft.com/en-us/java/api/overview/azure/spring-cloud-feature-management-readme?view=azure-java-stable#targeting-in-an-application) is not...

enhancement
JavaSpring

I'm using the .NET SDK to work with Feature Flags in ASP.NET Core. The first thing I noticed is that app configuration is loading extremely slow all of the sudden....

There are a lot of beaking changes in AzureAppConfigurationPush@5. Is source code of AzureAppConfigurationPush extention available ? The documentation only describes how to use it in the Release pipelines.

enhancement
docs
Azure Pipelines

When installing with helm helm install azureappconfiguration.kubernetesprovider \ oci://mcr.microsoft.com/azure-app-configuration/helmchart/kubernetes-provider \ --namespace azappconfig-system \ --create-namespace and deploying apiVersion: azconfig.io/v1 kind: AzureAppConfigurationProvider metadata: name: appconfigurationprovider-sample spec: endpoint: target: configMapName: configmap-created-by-appconfig-provider configMapData: type:...

enhancement
Kubernetes

Bumps [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) from 1.10.2 to 1.11.0. Release notes Sourced from Azure.Identity's releases. Azure.Identity_1.11.0 1.11.0 (2024-04-09) Bugs Fixed AzurePowerShellCredential now handles the case where it falls back to legacy PowerShell without...

dependencies
.NET

Many of the spring cloud projects (spring-config-server, spring-cloud-vault) have moved away from using the `bootstrap.properties/boostrap.yml` to load external configuration early in the Spring application's lifecycle in favor of using the...

enhancement
JavaSpring

``` My code: var settings = config.Build(); config.AddAzureAppConfiguration(options => { var azureAppConfigurationSetting = new AzureAppConfigurationSettings(); settings.GetSection("AppConfiguration").Bind(azureAppConfigurationSetting); options.Connect(new Uri($"https://{azureAppConfigurationSetting.Name}.azconfig.io"), new DefaultAzureCredential()) .ConfigureRefresh(refresh => { refresh.Register("Sentinel", refreshAll: true) .SetCacheExpiration(TimeSpan.FromSeconds(5)); }); options.SelectSnapshot($"{azureAppConfigurationSetting.SnapshotName}-{azureAppConfigurationSetting.SnapshotVersion}"); _refresher...

bug
.NET Config Provider
service

**Describe the bug** Springboot application failing to start due to AppConfigurationRefreshEndpoint final class from azure appconfiguraiton-web when actuator starter is being added to project. **Exception or Stack Trace** 2024-05-13 20:46:10,545...

question
Java

I have detected that if we make use of ‘UseAzureAppConfiguration’, which in turn internally injects the middleware ‘AzureAppConfigurationRefreshMiddleware’, it breaks the execution of the context of the Eternal Orchestration Functions....

.NET Config Provider
question