Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created May 1, 2019 20:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save guitarrapc/f8527f7d09de8a20f53b194aee42be56 to your computer and use it in GitHub Desktop.
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostingContext, config) =>
{
var chain = new CredentialProfileStoreChain();
if (chain.TryGetAWSCredentials("PROFILE_NAME", out var profile))
{
config.AddSecretsManager(region: RegionEndpoint.APNortheast1, credentials: profile);
}
})
.UseStartup<Startup>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment