Automate business processes with Logic Apps Part 1 – Create API Management, Logic App and Storage account
1 min read

Automate business processes with Logic Apps Part 1 – Create API Management, Logic App and Storage account

Time for another lab, this time lab 09 which is here.

First create a resource group and the API management.

az group create --location westeurope -n 09lab-rg
az apim --name apimanagementlab08 -g 00lab-rg -l westeurope --publisher-email youremail --publisher-name yourpublished --sku-name Consumption

In the portal create the logic app.

And finally create the storage account.

az storage account create --name az204lab09storage -g 09lab-rg --sku Standard_LRS --access-tier Hot --kind StorageV2

Perfect! In the next post we will upload files to a storage blob and configure a workflow in Logic Apps!

Leave a Reply