Retrieve Azure AppSettings and Connection String Settings in ASP.NET Core Apps
- Background
- Azure AppSettings & Connection Strings
- Access App settings and Connection strings in your application
- IConfiguration
- Sample configuration in Azure
- Result in Azure website
- Sample code in View
- Result in Azure website
- Access through environment variables
- Update these settings in CI/CD environment
- VSTS
Background
In ASP.NET Core, we can easily use user secrets to manage our password or credentials. This post will summarize the approaches we can use after the websites are deployed into Azure.
Azure AppSettings & Connection Strings
In Azure management portal, navigate your App Services. And then in SETTINGS section, click on Application settings.
In App settings section, you can setup up any key way pairs:
In Connection strings section, you can setup all the connection strings:
You can also choose the connection type:
These settings are injected at run time.
Access App settings and Connection strings in your application
IConfiguration
All the configurations will be injected and can accessed through IConfiguration. You can directly add IConfiguration into your controller or services. You can also inject this directly into your views.
Sample code in Controller
using AzureWebAppTest.Models;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using System.Diagnostics;namespace AzureWebAppTest.Controllers
{
public class HomeController : Controller
{
private readonly IConfiguration configuration;public HomeController(IConfiguration configuration)
{
this.configuration = configuration;
}public IActionResult Index()
{
var appSettingTest1 = configuration["appSettingTest1"];
var connectionStringTest1 = configuration.GetConnectionString("connectionStringTest1");return Json(new { appSettingTest1, connectionStringTest1 });
}}
Sample configuration in Azure
Result in Azure website
Sample code in View
@{
ViewData["Title"] = "Home Page";
Layout = null;
}
@using Microsoft.Extensions.Configuration
@inject Microsoft.Extensions.Configuration.IConfiguration configuration<p>appSettingTest1: @configuration["appSettingTest1"]</p>
<p>connectionStringTest1: @configuration.GetConnectionString("connectionStringTest1")</p>
Result in Azure website
Access through environment variables
All these settings are injected into environment variables and you can access them in other programming languages by adding some prefix:
For App settings, ‘APPSETTING_’ is added to each settings. and for connection strings, there are different prefixes added for different connection types:
- SQL Server:
SQLCONNSTR_
- MySQL:
MYSQLCONNSTR_
- SQL Database:
SQLAZURECONNSTR_
- Custom:
CUSTOMCONNSTR_
For more details, please refer to: https://docs.microsoft.com/en-us/azure/app-service/web-sites-configure
Update these settings in CI/CD environment
Instead of manually updating these settings through Azure management portal, you can also Azure Resource Manager PowerShell module to implement it in a continuous integration and deployment environment. Refer the following post for examples: https://blogs.msdn.microsoft.com/tfssetup/2016/05/20/accessingupdating-azure-web-app-settings-from-vsts-using-azure-powershell/
VSTS
If you are using Visual Studio online build and release functions, you can also just install some extensions available in Visual Studio marketplace. For instance, the following link provide you the functionality to configure App settings:
https://marketplace.visualstudio.com/items?itemName=hboelman.AzureAppServiceSetAppSettings
Your solution work like charm!