
Highlight
Some scenarios might require you do disable workflows before you deploy your code. Here is why…
Intro
Are you planning on moving to Logic App Standard, or maybe you are just starting and you were wondering what are the differences between Logic Apps Connectors? Well, here is my quick summary of what you should be aware of.
When you start building logic apps in Standard SKU you might find your favorite connectors duplicated like this. One will have this small buble with “In-App” message, and second won’t.

What does this mean for us? Actually quite a lot…
Connector key differences
Difference #1 - Execution Host
This one is big for everyone, whether you are a developer or an architect. You need to know that logic apps connectors execute in different places (hosts) based on your type.
- Azure - connectors execute on Microsoft’s subscription/tenant, hence outside of your Azure environment
- In-App - connectors execute on your subscription/tenant, hence directly on your app service
This has several implications regarding both cost and networking, and I’ve covered this briefly in a two separate posts
Difference #2 - Actions
You would expect that when moving from Azure connector to In-App connector for Azure Blog Storage should support the same actions, except it should execute on your app service instead of MS environment. In 75% of cases you will be right, but in 25% not so much. So before chaging your connectors please
Difference #3 - Triggers
Same for triggers. Not all triggers are supported, even when using Azure connector for the same service. There is like 90% parity, but ensure to check this out.
Difference #4 - Parameters
Third’s time the charm? Yep. Same with parameters. Logic app can have the same connector, for the same service, and even the same action. But out of nowhere it might require different parameters, or outright miss some of the ones that azure connector had.
I’m not sure how there is no backward compatibility when implementing new connectors, and I’m yet to ask Microsoft product group about it.
Difference #5 - Triggering Logic
This was is a surprising and frustrating for many people moving over, and I don’t blame them. You would expect when you see a trigger “When SQL table row is added/changed” on Azure SQL trigger you would expect this to work the same way between in-app and azure connectors, and yet, it doesn’t.
The example that I gave is actually one of bigger surprises that I’ve encountered when moving logic apps to a standard sku. SQL trigger in standard SKU creates CDC tables in your schema?! It not only does it but it generates some random names and uses odd conventions, so this can mess up with your SQL CICD depending on how it was implemented.
Difference #6 - Permissions
You would think there were enough challenges and watch-outs already, but here is another one.
Difference #7 - Authentication
To make things even trickier, some connectors do not support all authentication types. The biggest impact is when your organization doesn’t allow access keys/account keys and an in-app connector api connection requires it. Odd choice to be frank, but well, it is what it is.
I’m making a note of it because for many, many months after the release of standard logic apps Azure Blob Connector did not support managed identity. Worth checking if you use a different connectors.
Difference #8 - Not all connectors exist
Sometimes this isn’t an issue. A connector like SharePoint does not need to have an equivalent of in-app connector. But for some connectors this might be a blocker due to security policies and firewall restrictions. So always worth checking.
But at very least remember, if there is no in-app, that means executions are paid. Be aware not to get surprised.
Difference #9 - Credentials are managed differently
Watchout - Migrations
When migrating over to standard logic apps from consumption logic apps remember about one very important thing that is often not mentioned in the, when you export and import your logic app. All connectors are still Azure connectors. They don’t magically change into in-app conenctors.
Hence, if you are migrating to standard logic apps because
- You plan to save money on execution costs
- You need to move to secure private network environment
Then you need to update all connectors & actions from azure to in-app, sometimes this might require rework and refactoring from your end.
The main change is ‘basic’ connectors. Basic connectors are automatically becoming in-app conenctors, hence will be free by default.
Checklist
Here is my migration checklist which you should run for EVERY connector and EVERY action you use
Check | Question | OK? |
---|---|---|
Connector | Does in-app connector equivalent exists? (Cost / Networking) | ✅ or 🛑 |
Authentication | Does in-app connector support my preferred authentication type? | ✅ or 🛑 |
Actions | Does in-app connector has the actions I use? | ✅ or 🛑 |
Parameters | Does in-app connector action support the paratemers that I use, or has equivalent of these parameters that I can use? | ✅ or 🛑 |
Permissions | Does the trigger or action require the same permissions on the system that I’m connecting to? | ✅ or 🛑 |
CICD | Did I adjust my CICD to replace credentials for in-app service connections? | ✅ or 🛑 |
Trigger | If the trigger exist, does it work the same way? | ✅ or 🛑 |
Summary
Hopefully this helps you out on your logic app journey!
Next Actions
Here are some recommendations from me on what you can check out next if you want to learn more