Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20 lines (18 sloc)
616 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using KeyVaultSeries.Core; | |
using Microsoft.Azure.KeyVault; | |
using System; | |
namespace GetSecretsInYourApp | |
{ | |
public class Global : System.Web.HttpApplication | |
{ | |
protected void Application_Start(object sender, EventArgs e) | |
{ | |
KeyVaultClient keyVaultClient = new KeyVaultClient( | |
new KeyVaultClient.AuthenticationCallback( | |
TokenBasedAccessHelper.GetToken)); | |
var secretValut = keyVaultClient.GetSecretAsync("[url-to-secret]") | |
// Don't try this at home :) | |
.GetAwaiter().GetResult().Value; | |
} | |
} | |
} |