I would like to create an Azure Data Factory pipeline that copies a file to multiple storage accounts. My plan was to define the storage account connection info in a pipeline parameter as an array and use the ForEach activity to loop over each of the objects in the array passing the connection info to another pipeline.
[
{
"destinationBlob": {
"connectionString": "Conn1"
}
},
{
"destinationBlob": {
"connectionString": "Conn2"
}
},
{
"destinationBlob": {
"connectionString": "Conn3"
}
}
]
My question is, is it possible to parameterize the connection to an Azure Blob Storage Linked Service?