Home > Enterprise >  No resources of this type found under this subscription Azure Logic Apps
No resources of this type found under this subscription Azure Logic Apps

Time:12-30

I tried to create a workflow using Azure Logic Apps, I used Recurrence as my trigger (Daily) and Azure Function (Timer Trigger) as my Process to create some dataframe and export to csv, and both of them Dataframe, and CSV file need to send it via email.

At first, I use SMTP in my Azure Function, but it got an error when deployed on Azure (Auth Error). So my plan is using the logic app "Send Email".

But when I tried to deploy the my Azure Function I got an error, and I can't Create it on Logic Apps

No resources of this type found under this subscription.

enter image description here

CodePudding user response:

We have tested this in our local environment , Below analysis are based on our observations.

In our local environment , we have created a logic app of both consumption based & standard based with recurrence as trigger tried to call AZURE function from the logic apps.

  1. If you are trying to add existing azure function in your logic app .You can add only Http trigger functions in either standard based or consumption based logic app.
  • Adding Http trigger functions to standard logic app :

enter image description here

  • Adding Http trigger functions to consumption based logic app :

enter image description here

  1. If you function app has timer trigger or queue function & you are trying to add them in your logic app those functions are not getting populated as shown below

Adding timer trigger functions to Consumption based logic app:

enter image description here

Adding timer trigger functions to Standard based logic app:

enter image description here

  • Related