Posts

Showing posts with the label Azure App Configuration

Azure App Configuration for ASP.NET: A Complete Guide to Centralized Configuration Management

Image
Externalizing properties (or configurations) in an ASP.NET application to an Azure App Configuration store allows for centralized configuration management, easier updates, and improved security. Here's a complete guide to set this up: Step 1: Create an Azure App Configuration Store Log in to Azure Portal. Search for "App Configuration" in the search bar and click on it. Click on "Create" and provide the following details: Subscription : Select your Azure subscription. Resource Group : Select an existing resource group or create a new one. Name : Provide a unique name for the App Configuration store. Region : Choose your preferred region. Click "Review + Create" and then "Create" . Step 2: Add Configuration Settings in Azure Go to your App Configuration store in the Azure Portal. Navigate to "Configuration Explorer" . Click "Create" to add a new key-value pair. Key : The name of your configuration property (e.g., AppSet...

How to externalize Spring Boot Properties to an Azure App Configuration Store

Image
Hello everyone, Hope you are doing well. In this tutorial, you will learn how to centralize Spring Boot properties to an Azure App Configuration. A little bit of Background Azure App Configuration Azure App Configuration provides a service to centrally manage application settings and feature flags. 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 application deployment. Use App Configuration to store all the settings for your application and secure their access in one place. More Info -  https://docs.microsoft.com/en-us/azure/azure-app-configuration/overview Spring Boot Spring Boot makes it easy to create stand-alone, production-grade Spring-based Applications that you can "just run".  More Info -  https://spring.io/projects/spring-boot Create an App Configuration store Sign in to the Azure portal...