Configuration experiment in ASP.NET Core – RemoteJsonFile
This is an experiment project to access appsettings.json from Azure Blob or any remote url.
I will use public access to this Azure file considering no user secrets are included in this file. You would need to add additional options to secure your link if any user secrets are transmitted.
Example url: https://your-storage.blob.core.windows.net/your-blob/appsettings.json
services.AddRemoteJsonFile(Configuration, "AppSettings:Url:RemoteUrl", options =>
{
Configuration = options;
});
Source here CodeCapital.AspNetCore.Extensions.Configuration.Json.
C#ASP.NET Core
Any comments? You can start 🗨 at GitHub Discussions. Edit this page on .