I am trying to create DataFactory SelfHosted Runtime using bicep
I am trying to follow https://learn.microsoft.com/en-us/azure/templates/microsoft.datafactory/2018-06-01/factories/integrationruntimes?pivots=deployment-language-bicep There is ambiguity what all property needed to create SHIR. I need key based autorization.
Because to deploy IR msi on a VM we need Authkey which will be generated by above operation
var parentName = 'someuniqueadfname'
resource SelfHostedIR 'Microsoft.DataFactory/factories/integrationRuntimes@2018-06-01' = {
name : '${parentName}/SelfHostedIR'
properties : {
description : 'My Desc'
type : 'SelfHosted'
typeProperties : {
linkedInfo : {
authorizationType : 'Key'
key : {
type : 'SecureString'
value : 'string'
}
}
}
}
}