1 year ago
#364647
Bonomi
Error: "self signed certificate in certificate chain" using AzureResourceManagerTemplateDeployment@3
I have a Azure DevOps pipeline that uses a task AzureResourceManagerTemplateDeployment@3 to deploy an ARM template and am getting a certificate error
This is my task:
- task: AzureResourceManagerTemplateDeployment@3
displayName: 'ARM Template deployment: Resource Group scope'
inputs:
azureResourceManagerConnection: PersonalAzureSubs
subscriptionId: 'my-subscription'
resourceGroupName: 'my-resource-group-name'
location: 'North Europe'
templateLocation: 'URL of the file'
csmFileLink: '$(StorageContainerUri)qa/my.template.json$(StorageContainerSasToken)'
csmParametersFileLink: '$(StorageContainerUri)qa/my-parameters.json$(StorageContainerSasToken)'
overrideParameters: '-ApimServiceName my-apim-service -LinkedTemplatesBaseUrl $(Env:StorageContainerUri)qa -LinkedTemplatesUrlQueryString $(StorageContainerSasToken) -PolicyXMLBaseUrl $(StorageContainerUri)qa/policies -PolicyXMLSasToken $(StorageContainerSasToken)'
The agent is running on my machine and I've configured it with a ca cert. Any idea what could be wrong?
azure-pipelines
azure-rm-template
0 Answers
Your Answer