Closed devlace closed 3 years ago
In the most recent version of the engagements' synapse archi, I rewrote the linked service to be a key vault reference. It makes the CD slightly easier since we don't need to override this linked service (only the KV one)
Do we want to do that for this sample too?
e.g.
{
"name": "pipelineADLS",
"type": "Microsoft.Synapse/workspaces/linkedservices",
"properties": {
"type": "AzureBlobFS",
"annotations": [],
"typeProperties": {
"url": {
"type": "AzureKeyVaultSecret",
"store": {
"referenceName": "keyvault",
"type": "LinkedServiceReference"
},
"secretName": "Synapse-PipelineAdls-Url"
}
},
"connectVia": {
"referenceName": "AutoResolveIntegrationRuntime",
"type": "IntegrationRuntimeReference"
}
}
}
In the most recent version of the engagements' synapse archi, I rewrote the linked service to be a key vault reference. It makes the CD slightly easier since we don't need to override this linked service (only the KV one)
Do we want to do that for this sample too?
e.g.
{ "name": "pipelineADLS", "type": "Microsoft.Synapse/workspaces/linkedservices", "properties": { "type": "AzureBlobFS", "annotations": [], "typeProperties": { "url": { "type": "AzureKeyVaultSecret", "store": { "referenceName": "keyvault", "type": "LinkedServiceReference" }, "secretName": "Synapse-PipelineAdls-Url" } }, "connectVia": { "referenceName": "AutoResolveIntegrationRuntime", "type": "IntegrationRuntimeReference" } } }
The existing Parking Sensor sample should already be using KV as the go-to secret store where possible. I will just expand the scope of this story to update the ADF Data Pipelines in general from the Parking Sensor solution including the LinkedServices to work for the Synapse version of the solution.
Description
Using the Parking Sensor ADF Data Pipelines as a base, update this to work for Synapse pipelines. Changes include, but not limited to:
Original Parking Sensor ADF artifact definitions: https://github.com/Azure-Samples/modern-data-warehouse-dataops/tree/main/e2e_samples/parking_sensors/adf
Dependencies
394
DoD