Warm tip: This article is reproduced from stackoverflow.com, please click
azure azure-log-analytics azure-logic-apps rest

Creating a Point Of Interaction for already available REST API's

发布于 2020-04-23 15:56:16

I want to connect my REST API to my Log Analytics Work space in Microsoft Azure.

Where/How to provide the API key and Secret Key of my REST API in order to establish connection between my Logic App and my API?

Questioner
Yatharth Dholakia
Viewed
36
Hury Shen 2020-02-11 15:56

You can create Azure key vault and store your key in it, then use "Get secret" action in your logic app to access the key you stored just now. After that, you can use the key from "Get secret" action in your rest api in logic. By the way, you may need to grant permission to your logic app to access the azure key vault. The page I provided shows the way of PowerShell and Azure CLI to grant the premission, you can also do it on azure portal(shown as below screenshots). enter image description here enter image description here