Skip to content

Instantly share code, notes, and snippets.

@kirikintha
Created January 12, 2020 19:14
Show Gist options
  • Save kirikintha/159c1101e41e920327e6d015ce5b7bdb to your computer and use it in GitHub Desktop.
Save kirikintha/159c1101e41e920327e6d015ce5b7bdb to your computer and use it in GitHub Desktop.
arm-template-parameters-definition.json - For adding in Function App to parameters for CI
{
"Microsoft.DataFactory/factories/pipelines": {},
"Microsoft.DataFactory/factories/integrationRuntimes": {
"properties": {
"typeProperties": {
"ssisProperties": {
"catalogInfo": {
"catalogServerEndpoint": "=",
"catalogAdminUserName": "=",
"catalogAdminPassword": {
"value": "-::secureString"
}
},
"customSetupScriptProperties": {
"sasToken": {
"value": "-::secureString"
}
}
},
"linkedInfo": {
"key": {
"value": "-::secureString"
},
"resourceId": "="
}
}
}
},
"Microsoft.DataFactory/factories/triggers": {
"properties": {
"pipelines": [
{
"parameters": {
"*": "="
}
},
"pipelineReference.referenceName"
],
"pipeline": {
"parameters": {
"*": "="
}
},
"typeProperties": {
"scope": "="
}
}
},
"Microsoft.DataFactory/factories/linkedServices": {
"*": {
"properties": {
"typeProperties": {
"accountName": "=",
"username": "=",
"userName": "=",
"accessKeyId": "=",
"servicePrincipalId": "=",
"userId": "=",
"clientId": "=",
"clusterUserName": "=",
"clusterSshUserName": "=",
"hostSubscriptionId": "=",
"clusterResourceGroup": "=",
"subscriptionId": "=",
"resourceGroupName": "=",
"tenant": "=",
"dataLakeStoreUri": "=",
"baseUrl": "=",
"database": "=",
"serviceEndpoint": "=",
"batchUri": "=",
"databaseName": "=",
"systemNumber": "=",
"server": "=",
"url": "=",
"aadResourceId": "=",
"connectionString": "|:-connectionString:secureString"
}
}
},
"AzureFunction": {
"properties": {
"typeProperties": {
"functionAppUrl": "="
}
}
}
},
"Microsoft.DataFactory/factories/datasets": {
"*": {
"properties": {
"typeProperties": {
"folderPath": "=",
"fileName": "="
}
}
}
}
}
@kirikintha
Copy link
Author

This is the closest I could find to keeping all the parameters I needed and adding the function url. This is really not my favorite. Check out this issue for more info.

Azure/Azure-DataFactory#93

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment