Created
January 12, 2020 19:14
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "=" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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