Tag Archives: Azure
Secure your Environment Variable inside Azure Function using Key Vault
In the previous blog, we learn about how to use the Environment variable in Azure Function. Environment variables are most important and confidential as they might contain the system credentials or configure that you don’t want any to access directly. The most unsecure way to store them is directly inside the Configuration of Azure function … Continue reading Secure your Environment Variable inside Azure Function using Key Vault
Use of Environment Variable inside Azure Function in C#
In this blog, we will learn how to configure and use Environment Variable in Azure Function. Concept of using Environment variable during your development which needs to deploy on multiple servers and connect to multiple systems. Whenever you use Environment variables to store the global constant or system credentials it reduces the time which was … Continue reading Use of Environment Variable inside Azure Function in C#
Create new records in CRM from JSON data in Blob Storage
If you want to create new records from a json data, you can do it by using Logic App. First you need to make sure to upload json file in blob container Steps for Logic App: First select a HTTP Trigger block in a new logic app designer Next step is to select Get blob … Continue reading Create new records in CRM from JSON data in Blob Storage
How to create a table using Azure Logic Apps with proper formatting
In this blog, we will see how we can create a table using HTML language using the Azure logic app. If you see carefully, there is an action block present which is “Create HTML table” but it does not give formatting flexibility. so in this blog, I will explain how we can use compose block … Continue reading How to create a table using Azure Logic Apps with proper formatting
Update records in Dynamics CRM using Azure Logic Apps
In this blog, we will see how we can update the records CRM with the help of a logic app workflow. Step 1: Add the recurrence trigger in the logic app and set it to run in a one-day interval. you can set any interval. Without a trigger, you cannot create a logic app. Step … Continue reading Update records in Dynamics CRM using Azure Logic Apps
Trigger Azure Pipeline with logic app
Hello, friends in this blog we will see how to trigger an azure data factory pipeline using a logic app. Step 1: Create an Azure Data Factory pipeline for your integration. Step 2: Create a logic app of your preference, for this blog, I am creating an HTTP trigger logic app. Step 3: Now click … Continue reading Trigger Azure Pipeline with logic app
Connect Azure Databricks to Power BI
Open Power BI and Click on Get Data and Search for Azure Databricks and click on connect. It will ask for below details, Server Hostname HTTP Path Now we will see, how to get above details, Go to Azure Databricks and click on Clusters Once clusters is opened the go to Advanced setting > JDBC/ODBC. … Continue reading Connect Azure Databricks to Power BI
Securing an API using Open ID Connect from AAPIM : Part 4 – Configure a JWT validation policy to pre-authorize requests
This Blog Series will guide you through OpenID Connect Authentication Setup in API Management
Create Linked Service with Salesforce in Azure Data Factory
Pre-requisite: Salesforce Account (In this case we are having Developer trial license) Azure Data Factory in Azure. Steps To create linked service for Salesforce in Azure Data Factory we need username, password and secret key. The username and password is the same credential we use for login in Salesforce and we can create secret key … Continue reading Create Linked Service with Salesforce in Azure Data Factory
Triggering Azure Pipeline from on premise SQL Server
In this blog, we are going to Trigger ADF Pipeline whenever there is insert or update operation is performed on on-premise SQL Server. Steps: Create ADF Pipeline.In this case we have already created Pipeline. And below is Dataflow. Create PowerShell Script (for Authentication and Triggering Pipeline).Below is the code for authentication and triggering of Pipeline, … Continue reading Triggering Azure Pipeline from on premise SQL Server