An Azure service that automates the access and use of data across clouds without writing code.
@Francesco Ghigo I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others", I'll repost your solution in case you'd like to "Accept" the answer.
Issue:
You observed that your array variable was not having the expected value inside the for each action
Solution:
You found that for each loops run concurrently, so it was running everything at once. Setting the concurrency to allow only 1 run fixed the issue. For more details, please refer to this document.
Thank you again for your time and patience throughout this issue.