Design an application infrastructure management strategy

Alberto De Natale
5 min readSep 13, 2021

In this post, I will share my study notes that I took while preparing for the exam Azure AZ400 “Design an application infrastructure management strategy”.

Assess a configuration management mechanism for application infrastructure

A centralized configuration service is especially useful in microservices apps and other distributed apps. This module introduces Azure App Configuration as a service for centrally managing configuration values — specifically for feature flags. The service will ease the troubleshooting of errors that arise when configuration is deployed with an app.

App Configuration is a fully managed service that encrypts key values both at rest and in transit. Configuration values stored with it can be updated in real time without the need to redeploy or restart an app.

In an ASP.NET Core app, Azure App Configuration is registered as a configuration provider. Aside from the provider registration, the app doesn’t know about the App Configuration store. Configuration values can be retrieved from it via .NET Core’s configuration abstraction — the IConfiguration interface.

Azure App Configuration

--

--

Alberto De Natale

Alberto De Natale is a passionate tech-enthusiast software developer.