call key vault from logic app and azure function
@Microsoft.KeyVault(SecretUri=https://my-key-vault.vault.azure.net/secrets/my-secret/29e8f1b62cb34f3aa40f0757aea0388d) Azure function – using Microsoft.Azure.KeyVault; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Extensions.Http; using Microsoft.Azure.WebJobs.Host; using Microsoft.IdentityModel.Clients.ActiveDirectory; using System.Configuration; using System.Net; using System.Net.Http; using System.Threading.Tasks; namespace KeyVaultManagementFunctionApp { public static class Runkva { [FunctionName(“demo”)] public static async Task<HttpResponseMessage> Run([HttpTrigger(AuthorizationLevel.Anonymous, “get”, “post”, Route =”HttpTriggerCSharp/vault/{vaultname}/secret/{secret}”)]HttpRequestMessage req, stringvaultname, string secret, TraceWriter log) { // The Application Id of the Azure AD application var clientId = ConfigurationManager.AppSettings[“ClientId”]; // The Value of the Key you created in the Azure AD application var clientSecret… Read More call key vault from logic app and azure function