Azure App Configuration is a service offered in Azure to help with managing application settings and feature flags. You would want to use App Configuration when you need to share app configuration across multiple applications/micro-services or are using feature flags in your software.
Getting up to speed on Azure App Configuration is straightforward as the Microsoft docs are an excellent resource with tutorials covering the major use cases. Go through this tutorial to see the various ways you can use feature flags using App Configuration: https://docs.microsoft.com/en-us/azure/azure-app-configuration/quickstart-feature-flag-aspnet-core There is a more advanced tutorial showing how to use a percentage filter on a feature flag: https://docs.microsoft.com/en-us/azure/azure-app-configuration/use-feature-flags-dotnet-core.
App Configuration Feature Flags
As an application’s usage of feature flags grows you will want more advanced control over your feature flags. Azure App Configuration offers the following advanced functionality:
- feature flags are automatically updated without redeploying your app (the .NET Core SDK automatically pulls feature flags every 30 seconds by default)
- a flag is turned off or on based on a random percentage (useful for A/B testing)
- ability to see what your feature flags were set to in the past
- ability to add arbitrary filters to feature flags (e.g. browser type)
- ability to export feature flags so you can set application defaults in case your feature flag service is not available
Conclusion
I would highly recommend using App Configuration. The Azure implementation of App Configuration has been very easy to use and the documentation is excellent for .NET Core. Check it out before seeking a 3rd party feature flag service such as LaunchDarkly. If you do not need advanced A/B testing features of 3rd party packages, this may be for you.
References
https://docs.microsoft.com/en-us/azure/azure-app-configuration/overview
App Configuration Tutorials
- https://docs.microsoft.com/en-us/azure/azure-app-configuration/quickstart-feature-flag-aspnet-core
- https://docs.microsoft.com/en-us/azure/azure-app-configuration/use-feature-flags-dotnet-core
- https://docs.microsoft.com/en-us/azure/azure-app-configuration/use-feature-flags-dotnet-core
Originally published June 6, 2019. Information refreshed November 16, 2022.
We hope you found this post informational. If there are specific challenges you and your team face, the architects and engineers here at Clear Measure would be happy to work with you. Reach out to us now to find out all the ways we can help you!