When using the "publish" on the Azure Data Factory the ARM Template is generated
"name": "[parameters('factoryName')]",
"type": "Microsoft.DataFactory/factories",
"apiVersion": "2018-06-01",
"location": "[parameters('dataFactory_location')]"
When I use the NPM task in my build pipeline (@microsoft/azure-data-factory-utilities) it generates the following:
"name": "[parameters('factoryName')]",
"type": "Microsoft.DataFactory/factories",
"apiVersion": "2018-06-01",
"properties": {}
Running the process on my local machine has the same results (invalid ARM template)
So currently creating the ARM template via the CI/CD pipeline does not create a valid ARM template.
I have followed these instructions to get it going in my pipeline https://docs.microsoft.com/en-us/azure/data-factory/continuous-integration-deployment-improvements
Any suggestions or pointers would be very welcome.