Forum Discussion
FabData00
Jun 05, 2023Copper Contributor
Azure Logic App Creating multiple containers
Hi guys, I have a simple workflow in logic apps that reads data from library in sharepoint and then create the file inside of blob container. The problem is that a container is being created for...
Kidd_Ip
Jan 12, 2026MVP
Logic Apps are creating a new container on each run because the workflow is invoking the Create container action rather than the Create blob action. This results in a unique container being provisioned per execution, often using dynamic identifiers rather than writing the file into an existing container. The recommended approach is to provision the container once and subsequently use Create blob or Upload blob to add or update files within that container.
Connect to Azure Blob Storage from Workflows - Azure Logic Apps | Microsoft Learn