I'm trying to deploy simple ARM, but failing. What could be wrong?
I created "AzureRmPipeline-conn" from "ARM template deployment" feature.
I get error: "##[error]Error: Task failed while initializing. Error: Input required: ConnectedServiceName"
//Example //https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/deployment-tutorial- pipeline
//YML
- task: AzureResourceGroupDeployment@2
inputs:
deploymentScope: 'Resource Group'
azureResourceManagerConnection: 'AzureRmPipeline-conn'
subscriptionId: '1111753a-501e-4e46-9aff-6120ed56333'
action: 'Create Or Update Resource Group'
resourceGroupName: 'KensTestRG'
location: 'North Europe'
templateLocation: 'Linked artifact'
csmFile: '\ARMTemplates\CreateSQLServerARM\azuredeploy.json'
deploymentMode: 'Incremental'