Forum Discussion
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 each time the file is updated.
So the logic app is creating the file normally but is also creating a new container with ID codes as a name.
Has anyone experienced this before?
Thanks
1 Reply
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