Training
Module
Build reusable Bicep templates by using parameters - Training
Control and apply parameters to a Bicep template while protecting sensitive inputs.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
APPLIES TO:
Azure Data Factory
Azure Synapse Analytics
Tip
Try out Data Factory in Microsoft Fabric, an all-in-one analytics solution for enterprises. Microsoft Fabric covers everything from data movement to data science, real-time analytics, business intelligence, and reporting. Learn how to start a new trial for free!
You can now parameterize a linked service and pass dynamic values at run time. For example, if you want to connect to different databases on the same logical SQL server, you can now parameterize the database name in the linked service definition. This prevents you from having to create a linked service for each database on the logical SQL server. You can parameterize other properties in the linked service definition as well - for example, User name.
You can use the UI in the Azure portal or a programming interface to parameterize linked services.
Tip
We recommend not to parameterize passwords or secrets. Store all secrets in Azure Key Vault instead, and parameterize the Secret Name.
Note
For a seven-minute introduction and demonstration of this feature, watch the following video:
All the linked service types are supported for parameterization.
Natively supported in UI: When authoring linked service on UI, the service provides built-in parameterization experience for the following types of linked services. In linked service creation/edit blade, you can find options to new parameters and add dynamic content. Refer to UI experience.
Advanced authoring: For other linked service types that are not in above list, you can parameterize the linked service by editing the JSON on UI:
Refer to the JSON sample to add parameters
section to define parameters and reference the parameter using @{linkedService().paramName}
.
{
"name": "AzureSqlDatabase",
"properties": {
"type": "AzureSqlDatabase",
"typeProperties": {
"connectionString": "Server=tcp:myserver.database.windows.net,1433;Database=@{linkedService().DBName};User ID=user;Password=fake;Trusted_Connection=False;Encrypt=True;Connection Timeout=30"
},
"connectVia": null,
"parameters": {
"DBName": {
"type": "String"
}
}
}
}
Training
Module
Build reusable Bicep templates by using parameters - Training
Control and apply parameters to a Bicep template while protecting sensitive inputs.
Documentation
Global parameters - Azure Data Factory
Set global parameters for each of your Azure Data Factory environments
How to use parameters and expressions in Azure Data Factory - Azure Data Factory
This How To article provides information about expressions and functions that you can use in creating data factory entities.
System variables - Azure Data Factory & Azure Synapse
This article describes system variables supported by Azure Data Factory and Azure Synapse Analytics. You can use these variables in expressions when defining entities within either service.